v2

latestOpenAPI 3.0.02026-07-3139594346.4 KB
Configuration

Get Callback URLs

Retrieves callbacks URLs for a Bolt merchant division.

get/v1/merchant/callbacks

Query parameters

division_idstring required

The unique ID associated to the merchant's Bolt Account division; Merchants can have different divisions to suit multiple use cases (storefronts, pay-by-link, phone order processing). You can view and switch between these divisions from the Bolt Merchant Dashboard.

Response

Merchant Callbacks Retrieved

Example response

{
  "callback_urls": [
    {
      "type": "oauth_redirect",
      "url": "https://example.com/1"
    },
    {
      "type": "oauth_logout",
      "url": "https://example.com/2"
    },
    {
      "type": "get_account",
      "url": "https://example.com/3"
    }
  ]
}