Authentication
Get an Authroization Bearer Token.
Base URL
sdk.faceki.comToken Generation End Point
https://sdk.faceki.com/auth/api/generate-tokenAuthentication for the Faceki API is achieved through token-based authentication. To authenticate requests made to the API, you must include an API token in the Authorization of your requests.

POST https://sdk.faceki.com/auth/api/generate-token
Headers
Name
Type
Description
clientSecret*
String
clientSecret will be found in the integration section.
 Example: "clientSecret":"00nl0cuq780ur007spqspa94kq6rkn1fap1e0kdre7gdl97lvspk".
clientId*
String
(string, required) Client Id from integration settings.
 Example: "client_id":"0NTS4CBV8MVII02VGVSPICB00".
Content-Type
String
application/json
    "responseCode": 0,
    "data": {
        "access_token": "<Your API Token>",
        "expires_in": 3600,
        "token_type": "Bearer"
    }
}{
  "clientSecret": ""
}{
  "status": false,
  "message": "client id is required",
  "statusCode": 422,
  "data": {}
}Last updated
