2025-05-14
Changes
Changed the response model returned by endpoint /api/external/v1/Dictionaries/rpa/portals
Old response model:
[
{
"portalName": "string",
"url": "string",
"enabled": true
}
]
New model:
[
{
"portalName": "string",
"entryMethods": [
{
"name": "string",
"isEnabled": true,
"url": "string"
}
]
}
]
This change enables the configuration of single credentials for multiple payer portals. In this model, the payer portal is an entryMethod
.
For payers that support SSO or other sign-in from 3rd party software, we can group them under the same portalName
and use the same account for all of them.