List applications
warning
This endpoint is only available to users with Sentry Interactive issued auth tokens.
Lists all application's owned by the current user
HTTP Request
GET https://api.doordeck.com/platform/application
Example
- Request
- Response
CURL
curl 'https://api.doordeck.com/platform/application' \
-X GET \
-H "Authorization: Bearer TOKEN"
Remember
Replace TOKEN with your access token.
JSON
[
{
"applicationId":"00000000-0000-0000-0000-000000000000",
"name":"My Amazing App",
"lastUpdated":1748363687.000000000,
"owners":[
"00000000-0000-0000-0000-000000000000"
],
"corsDomains":[
],
"authDomains":[
],
"logoUrl":null,
"privacyPolicy":null,
"mailingAddress":"My address",
"companyName":"My amazing company",
"supportContact":null,
"appLink":null,
"slug":null,
"emailPreferences":{
"senderEmail":"info@doordeck.com",
"senderName":"Doordeck",
"primaryColour":"#00283C",
"secondaryColour":"#45BDD1",
"onlySendEssentialEmails":false,
"callToAction":null
},
"authKeys":{
},
"oauth":null,
"isDoordeckApplication":false
}
]