Update Allowed Origins
POST/api/client-applications/:clientApplicationId/update-origins
Add url origins to the client application whitelist. The Initiate Login endpoint will reject non-whitelisted origins. Warning! This is a destructive operation. The allowed origins will be overwritten with the provided list. Use the Get Client Application endpoint to retrieve the current list of allowed origins.
Request
Path Parameters
Id of the client application.
- application/json
Body
required
The allowed origins for the client application. Minimum one origin is required.
Responses
- 204
- 400
- 403
No content
- application/json
- Schema
Schema
any
Request parameters are invalid
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
errors
object[]
The location of the invalid path param, query param or payload attribute.
{
"statusCode": 400,
"statusName": "Bad Request",
"errorCode": "INVALID_REQUEST_INPUT",
"errors": [
{
"message": "Invalid type",
"path": "items[1].attributes.invalidField"
}
]
}
Subject is not allowed to perform the action with the reason stated in the errorCode
FORBIDDEN Resource does not exist or there are no sufficient permissions to perform the action.
- application/json
- Schema
- Example (from schema)
Schema
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}