v1

latestOpenAPI 3.1.02026-07-24257573.4 KB
Authorization

Retrieve Access Token

After a listing has added you as their integrator, you can request an access token using your client credentials.

post/token

Request body

client_idstring required

OAuth client Identifier

client_secretstring required

OAuth client secret

grant_type'client_credentials' required

OAuth grant type

scopestring

Space-separated list of OAuth scopes

Example request

{
  "client_id": "CLIENT_ID_HERE",
  "client_secret": "CLIENT_SECRET_HERE",
  "grant_type": "client_credentials",
  "scope": "taxonomy:read brands:read products:read products:reviews:read menu_items menus:write"
}

Response

Successful Token Retrieval

access_tokenstring

The access token

token_typestring
expires_ininteger

Expiration time in seconds

scopestring
created_atinteger

Creation time in seconds

Example response

{
  "token_type": "Bearer",
  "scope": "taxonomy:read brands:read products:read products:reviews:read menu_items menus:write",
  "created_at": 1753304453
}
All 25 operations