Use OAuth 2.0 authorization to get access to API.
How to get an OAuth token
Anchor How to get an OAuth token How to get an OAuth token
How to get an OAuth token | |
How to get an OAuth token |
To authorize and get a token, run the following query
...
with the following parameters (form-data)
parameter | value |
---|---|
client_Id | given for connection via API |
client_secret | given for connection via API |
grant_type | client_credentials |
scopes | orders |
In response, you'll get a JWT access token and information about token expiration time.
...