Parameters and Responses
POST
REQUEST BODY SCHEMA: application/json
Parameters:
audience
: stringclient_id
: stringclient_secret
: stringgrant_type
: stringResponse Example
All endpoints use token from this response as Oauth 2 bearer token.
POST
REQUEST BODY SCHEMA: multipart/form-data
Parameters:
input
: array of strings (Account data file, can be multiple files)Response Example
PUT
REQUEST BODY SCHEMA: application/json
Parameters:
request_id
: any (as path parameter, Request ID you get in response after uploading account data);country
: string (Any of supported countries);operations
: array of strings (Any of available operations you got in response after uploading account data);params
: object (Optional argument that allows configuration for products, details will be specified under the respective product documentation);use_webhook
: boolean (Should webhook be sent after finishing processing)Response
GET
Parameters:
request_id
: any (Request ID you get in response after uploading account data);Response
GET
Response Example
GET
Parameters:
country
: string (Two letter country code filter for categories)Response
POST
REQUEST BODY SCHEMA: application/json
Parameters:
auth_method
: string (Authentication Method to use for webhook, possible options are OAuth2 and Basic Auth);auth_password
: string (Used for Basic Auth as password);auth_username
: string (Used for Basic Auth as username);callback_url
: string (URL to which POST webhook request will be sent);oauth_audience
: string (Used for Oauth2 as audience when fetching token);oauth_client_audience
: string (Used for Oauth2 as scope when fetching token);oauth_client_id
: string (Used for Oauth2 as client id when fetching token);oauth_client_secret
: string (Used for Oauth2 as client secret when fetching token);oauth_token_url
: string (Used for Oauth2 as location from which to fetch token)Response