QiD
  1. API
QiD
  • Overview
  • API Parameters
  • API
    • Request a token
      POST
    • Refresh an existing token
      POST
    • Initiate a request
      POST
  • Webhook
    • Introduction
  1. API

Request a token

POST
/api/token/create
This is the first step in the process - only once you have been issued with a token, will you be able to initiate the request...
The token is valid for 60 minutes after an initial API requests - an unexpired token can be refreshed within the next 12 hours. or a new token can be requested.

Request

Body Params application/json

Example
{
    "subscriber_id": "TEST0001"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://qid.aiq.bio/api/token/create' \
--header 'Content-Type: application/json' \
--data-raw '{
    "subscriber_id": "TEST0001"
}'

Responses

🟢200OK
application/json
Body

Examples
{
    "status": false,
    "code": "001",
    "message": "No Subscriber ID provided"
}
Modified at 2024-08-05 11:57:13
Previous
API
Next
Refresh an existing token
Built with