Configuration
You must create an endpoint that is secured and authenticated by your OpenIddict solution that uses the scope you have configured in the webhook settings.
Once you have your endpoint configured, you can enable the webhook and set the config setting with the Url for your endpoint. If this field is set then on successful User creation this webhook will be triggered.
Endpoint Requirements
AdminUI expects these endpoints to meet the following requirements:
- Accept POST
- Accept JSON
- Accept an email, username and subjectid in the body
Body
{
"subjectid": "string"
"email": "string",
"username": "string"
}
Response
On a successful request a 200 OK response should be returned.
Debugging
If the call made to the endpoint returns anything other than a success code, if logging is correctly configured, a error will be logged by the API containing the returned status code.