Sandoog API offers services for our various business partners and merchants. How you interact with the API depends on the services you wish to interact with.

Security
HTTPS
All API calls and callbacks require HTTPS. Your service will need a valid SSL certificate and be accessible via the standard SSL port (port 443).

Making an API request

First request: you need to get a token from the auth endpoint

📘

POST https://iq.api.sandbox.sandoog.net/auth HTTP/1.1

in the header add
Api-Key: abcd123*

Other API calls require an access_token, to authenticate the partner calling the API.

📘

PUT https://iq.api.sandbox.sandoog.net/orders/ord_abc HTTP/1.1

in the header add

Authorization: Bearer abcd123456789**access_token

Date Formats
Date and time formats All dates and times should use the ISO 8601 standard for representation of dates and times.

Authorization
APIs for partners require an Authorization that will have been issued to you.

Header parameter name: | Authorization

Steps to integrate:

  • Use the given security details to acquire an API key.
  • Register your Marchant account with a callback URL in webhooks endpoints.
  • Once registration is complete will be able to consume and interact with API e.g. create orders.
  • Key note: every API request has to contain the given access token in the authorization header after the first call.