Order Management System REST API - IdentitySource Controller
The identity/source
URI provides access to registered Identity Sources.
Being able to define Identity Sources allows the service to authenticate credentials from multiple Authentication servers, such as for offering partner integrations or having shared infrastructure between customers.
Retrieve all Identity Sources
Section titled “Retrieve all Identity Sources”GET /identity/source
Retrieves all the registered Identity Sources.
Requires the Admin
feature permission.
Response
Section titled “Response”Code | Status | Description |
---|---|---|
200 | Success | Content is an array of IdentitySource objects. |
403 | Failure | The authenticated identity does not have the Admin permission. |
Add or update an Identity Source
Section titled “Add or update an Identity Source”POST /identity/source
Adds or updates a registered Identity Source.
Requires the Admin
feature permission.
A single IdentitySource object.
Response
Section titled “Response”Code | Status | Description |
---|---|---|
204 | Success | Update completed successfully, or the update would make no changes. |
403 | Failure | The authenticated identity does not have the Admin permission. |
422 | Failure | Invalid data was provided. Content is a JSON array of one or more error codes describing the problem. |