Skip to main content

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

ParameterRequiredDescription
urltrueIssuer

Example

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 TOKEN with your access token.
  • Replace APPLICATION_ID with the application ID.
  • Replace AUTH_ISSUER with the auth issuer to be added.