Get Application Owners Details
warning
This endpoint is only available to users with Sentry Interactive issued auth tokens.
This endpoint will return the details of all owners of an application (see json below), given the requesting user is an owner.
HTTP Request
GET https://api.doordeck.com/platform/application/APPLICATION_ID/owner
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| applicationId | true | Application ID to get owner details for |
Response Parameters
| Parameter | Description |
|---|---|
| userId | is the user's ID |
| is the user's email address | |
| displayName | is optional and will be null if not set |
| orphaned | is false is not orphaned |
| foreign | is true if the user belongs to the Sentry Interactive user pool, false if they belong to a third-party application user pool |
Example
- Request
- Response
CURL
curl 'https://api.doordeck.com/platform/application/APPLICATION_ID/owner' \
-X GET \
-H 'Authorization: Bearer TOKEN'
Remember
- Replace
TOKENwith your access token. - Replace
APPLICATION_IDwith the application ID.
JSON
[
{
"userId": "00000000-0000-0000-0000-000000000000",
"email": "bear@doordeck.com",
"displayName": "Bear",
"orphaned": false,
"foreign": false
}
]