Pega shortened url
We are working on shortening the assignment link and send it via short message service and upon click of it we should be able to open the assignment using a particular authentication service(for example anonymous)
we are using URL Mapping to generate the link and open the assignment resulting in an url something like below
https://longpegacloudurl/prweb/PRAuth/Anonymous/Pay/abcdef
which is too long and would consume more than just 1 sms
hence we used our gateway services to shorten it , resulting in something like below
https:/myspace-dev/prweb/PRAuth/Anonymous/Pay/abcdef which is short but not short enough due to append of PRAuth/Anonymous/Pay/
question is whether we can possibility to adjust at pega server level to mask / shorten https://longpegacloudurl/prweb/PRAuth/Anonymous/Pay/abcdef the highlighted part in bold so that when the url https://longpegacloudurl/abcdef is hit it automatically detects the entire path behind it ( https://longpegacloudurl/abcdef-> routing to https://longpegacloudurl/prweb/PRAuth/Anonymous/Pay/abcdef ) automatically