Skip to main content

Remove Application Owner

warning

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

Removes an owner from an existing application.

HTTP Request

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

Request Parameters

ParameterRequiredDescription
applicationIdtrueApplication ID to remove owner from

Request Body

ParameterRequiredDescription
userIdtrueUser ID to be removed as owner

Example

CURL
curl 'https://api.doordeck.com/platform/application/APPLICATION_ID/owner' \
-X DELETE \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TOKEN' \
--data-raw '{"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 removed.