I am currently using Universal Login (New experience). In my Branding>UL>Advanced options Customisation Login page, Password Reset and MFA options are turned off.
I am trying to update the Title and Description on my UL page. For that I used the Management API’s call to the /prompts/ endpoint as follows:
curl --request PUT \
--url https://{tenant}/api/v2/prompts/login/custom-text/en \
--header 'Content-Type: application/json' \
--header 'authorization: Bearer eyJhb...' \
--data '{
"login": {
"title": "Welcome to Acme",
"description": "Enter your login details to get started"
}
}'
and got 200 OK response back. However, when I visit my login page I still see the default title and description:
Welcome
Log in to {tenant-name} to continue to {app-name}.
What am I doing wrong? I am currently on the free trial - is this why I cannot change the prompts?