Pega Mash Up screen showing Login screen to authenticate

Hi All,

I have a use case to launch a pega screen from external website. For this I have generated the mash up code with action ‘Create a new case’ and inserted it into the HTML file of host site.

While running the mash up screen , I am getting pega login screen to authenticate.

I have passed the model id and password as parameters , but still getting issues.

When no parameters passed:

When passing the parameter as below

data-pega-action-param-parameters =‘{“pzSkinName”:“Booking”,“pyMashupSkeletonName”:“pyDefaultSkeleton”,“UserIdentifier”:“modelid”,“Password”:“rules”}’

@DennyV68

Password needs to be passed as base64. so if it is rules it should be data-pega-action-param-parameters = {UserIdentifier:“saikat”,Password:“cnVsZXM=”}

Thanks

Saikat

@Saikat_Chakrabortty Thank You…

It worked…