Usage
Configuration
The api_key
following is provided and configured:
Instructions for using the commands
export
andcurl
are provided when running in terminal on Linux or Mac operating systems. In case you use another environment, please replace them with equivalent operations.
API Structure
Request
A typical API call looks like this:
All requests use HTTPS protocol, POST method and pass values in body using data format application/json
. Required headers are Content-Type
and Authorization
.
Response
The response uses the data format application/json
set in the header Content-Type
. If the request is successful, the HTTP status code is 200
. If the request fails, the HTTP status code can be . 4xx
or . 5xx
with a structure similar to the following:
Common errors
400 Bad Request
Please double check the provided values.
401 Unauthorized
Please double check that the request includes the Authorization:<api_key>
correct headers.
Please check the path and header again Content-Type: application/json
.
Last updated