Request Preparation
Now that you can make authenticated requests to the API, you need to prepare your requests to be processed successfully by our API.
First, you need to sign your requests with HTTP message signatures and include content digest header for requests with request body. To do so, please follow Request Signatures guide where you can find details on how to generate signing key pairs and set up our API so that your public key is recognised by us.
Second, for all modification requests (POST
, PUT
, PATCH
and DELETE
) you need to provide a unique idempotency key to avoid duplicated processing of requests due to networking issues. To do so, please follow Idempotencyguide.
Last updated