Creates an instance of sso configuration for a given authorisation server.
POST
/organisations/{OrganisationId}/authorisationservers/{AuthorisationServerId}/sso-configuration
curl \
--request POST 'https://matls-api.sandbox.raidiam.io/organisations/{OrganisationId}/authorisationservers/{AuthorisationServerId}/sso-configuration' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "x-fapi-auth-date: string" \
--header "x-fapi-customer-ip-address: string" \
--header "x-fapi-interaction-id: string" \
--header "x-customer-user-agent: string" \
--data '{"Contacts":["hello@example.com"],"DisplayName":"string","RedirectUriSuffix":"string"}'
Request examples
# Headers
x-fapi-auth-date: string
x-fapi-customer-ip-address: string
x-fapi-interaction-id: string
x-customer-user-agent: string
# Payload
{
"Contacts": [
"hello@example.com"
],
"DisplayName": "string",
"RedirectUriSuffix": "string"
}
Response examples (201)
# Headers
x-fapi-interaction-id: 73cac523-d3ae-2289-b106-330a6218710d
# Payload
{
"Contacts": [
"hello@example.com"
],
"DisplayName": "string",
"CreatedAt": "2025-05-04T09:42:00Z",
"ID": "string",
"RedirectUri": "https://example.com",
"ServerID": "string",
"Status": "Active",
"TextRecord": "string",
"UpdatedAt": "2025-05-04T09:42:00Z"
}
Response examples (400)
# Headers
x-fapi-interaction-id: 73cac523-d3ae-2289-b106-330a6218710d
# Payload
{
"errors": [
"string"
]
}