Authentication
Before using the API you need to generate a token, following the next steps:
- In your store, go to Dashboard > Settings > Integrations
- In the first section of the panel, API Integration Key. Click on the button Generate new key to generate you api key.
- Copy it and use it with your integration.
note
Keys can be generated per admin user.
To authenticate your API requests, include the token in the X-User-Token
header as shown below.
The required headers for API requests are:
{
"Content-Type": "application/json",
"Accept": "application/json",
"X-User-Token": "your_api_token_here"
}