Skip to main content

Add Application Owner

warning

This endpoint is only available to users with Sentry Interactive issued auth tokens.

Adds a new owner to an existing application.

HTTP Request

POST https://api.doordeck.com/platform/application/APPLICATION_ID/owner

Request Parameters

ParameterRequiredDescription
applicationIdtrueApplication ID to add owner to

Request Body

ParameterRequiredDescription
userIdtrueUser ID to add as owner

Example

CURL
curl 'https://api.doordeck.com/platform/application/APPLICATION_ID/owner' \
-X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TOKEN' \
--data-binary '{"userId": "00000000-0000-0000-0000-000000000000"}'
Remember
  • Replace TOKEN with your access token.
  • Replace APPLICATION_ID with the application ID.
  • Replace 00000000-0000-0000-0000-000000000000 with the ID of owner to be added.