Can you please share the management endpoint and terraform resource to update the title and description in signup page
Welcome back to the Auth0 Community!
For the Managment API endpoint you can use PUT /api/v2/prompts/{prompt}/custom-text/{language}
→ Auth0 Management API v2
In terms of the terraform resource you will need yo use the auth0_prompt_custom_text and in the body you will need to pass in the JSON:
https://registry.terraform.io/providers/auth0/auth0/latest/docs/resources/prompt_custom_text
"signup": {
"title" : "My New Cool Title",
"description" : "Awsome Description"
}
Thanks
Dawid
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.