Retrieve all subscribed applications and their certifications.
GET ~/apps
Headers
Field | Type | Description |
---|---|---|
Authorization | String |
Bearer authentication token prefixed with |
Content-Type | String |
Request content type, must be 'application/json' |
vendor | String |
The POS vendor name retrieved from Doshii dashboard |
Response
Field | Type | Description |
---|---|---|
id | String |
App id in Doshii |
name | String |
The name of the Application |
types | String[] |
The channels that the Application partner is certified against |
imageUri | String |
A URI referencing an image that can be used to represent an App |
Examples
Response
[
{
"id": 1,
"name": "Jimmy's test app",
"types": [
"Pay@Table",
"Order ahead",
"Loyalty",
"Reservations"
],
"imageUri": "https://sandbox.media.doshii.io/resources/image/jpeg/abc-123.jpg"
},
{
"id": 16,
"name": "Reservations test app",
"types": [
"Reservations"
]
}
]
Comments
0 comments
Please sign in to leave a comment.