Skip to main content

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

ParameterRequiredDescription
applicationIdtrueApplication ID to get owner details for

Response Parameters

ParameterDescription
userIdis the user's ID
emailis the user's email address
displayNameis optional and will be null if not set
orphanedis false is not orphaned
foreignis true if the user belongs to the Sentry Interactive user pool, false if they belong to a third-party application user pool

Example

CURL
curl 'https://api.doordeck.com/platform/application/APPLICATION_ID/owner' \
-X GET \
-H 'Authorization: Bearer TOKEN'
Remember
  • Replace TOKEN with your access token.
  • Replace APPLICATION_ID with the application ID.