Add Auth Issuer
warning
This endpoint is only available to users with Sentry Interactive issued auth tokens.
Adds a new auth issuer which must be unique across all applications, it should be a URI controller by the application
itself, e.g. https://myapp.com - it must match the iss field in all auth tokens generated by the third-party
application.
HTTP Request
POST https://api.doordeck.com/platform/application/APPLICATION_ID/auth/issuer
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| url | true | Issuer |
Example
- Request
- Response
CURL
curl 'https://api.doordeck.com/platform/application/APPLICATION_ID/auth/issuer' \
-X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TOKEN' \
--data-binary '{"url": "AUTH_ISSUER"}'
Remember
- Replace
TOKENwith your access token. - Replace
APPLICATION_IDwith the application ID. - Replace
AUTH_ISSUERwith the auth issuer to be added.
HTTP CODE
204