Authentication

Get an Authroization Bearer Token.

Base URL

sdk.faceki.com

Token Generation End Point

https://sdk.faceki.com/auth/api/access-token

Authentication 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.

Method: GET

Authorization: Bearer Token

Parameter:

clientId *(mandatary)

clientSecret *(mandatory)

GET https://sdk.faceki.com/auth/api/access-token

Headers

NameTypeDescription

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"
    }
}

Last updated