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
| Parameter | Required | Description |
|---|---|---|
| applicationId | true | Application ID to remove owner from |
Request Body
| Parameter | Required | Description |
|---|---|---|
| userId | true | User ID to be removed as owner |
Example
- Request
- Response
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
TOKENwith your access token. - Replace
APPLICATION_IDwith the application ID. - Replace
00000000-0000-0000-0000-000000000000with the ID of owner to be removed.
HTTP CODE
204