Skip to main content

Accounts - Show

Overview

This endpoint allows you to list information about a given account.


Request

GET /v1/accounts/{account_uuid}

Example Request

GET /v1/accounts/3584a197b5a9

Response

Response Values

KeyTypeValue
uuidStringA unique ID for the given account.
default_promised_delivery_minutesInteger or nullThe default promised delivery minutes for the account
friendly_nameStringA friendly name
kindStringfleet or store
partners_external_identifierStringa specific external id assigned by the Partner creating the store
fleet_account_uuidString or nullThe uuid of the fleet (account) if this account belongs to one
webhook_settingsObject Webhook SettingsInformation about webhook settings.

Webhook Settings

⚠️ Warning This key will not be sent if your account is using the new webhook system.

KeyTypeDescriptionExample
webhook_urlstringdefault webhook urlhttp://webhook.com/default_url
order_kds_print_request_webhook_urlstringwebhook url for order_kds_print_request.http://webhook.com/order_kds_print_request
item_status_updatedObjectInformation about item_status_updated webhook
order_preparation_updatedObjectInformation about order_preparation_updated webhook

Item and Order Preparation Updated

KeyTypeDescriptionExample
being_preparedBooleanwhether to send webhook when status is updated to being_preparedfalse
preparedBooleanwhether to send webhook when status is updated to preparedtrue
suggestedBooleanwhether to send webhook when status is updated to suggestedfalse
webhook_urlStringWebhook URL to send the event tohttp://webhook.com/item_preparation_updated

Example Response

{
"uuid": "c99f9692429c",
"default_promised_delivery_minutes": 60,
"friendly_name": "ChocoF",
"partners_external_identifier": "POSKing-224",
"kind": "store",
"fleet_account_uuid": "e96043b3d8d6",
"webhook_settings": {
"webhook_url": "http://webhook.com/default_Webhook_url",
"order_kds_print_request_webhook_url": "http://webhook.com/order_kds_print_request",
"item_status_updated": {
"being_prepared": true,
"prepared": true,
"suggested": false,
"webhook_url": "http://webhook.com/item_status_updated"
},
"order_preparation_updated": {
"being_prepared": true,
"prepared": false,
"suggested": false,
"webhook_url": "http://webhook.com/order_preparation_updated"
}
}
}