OAuth Authentication

It is possible to use the OAuth Client Credentials flow to authenticate with the Verifiable API. In order to use this flow, you must use the client ID and a client secret from Verifiable. You must send the client credentials along with the grant type client_credentials in a URL-encoded format.

Request
Request Body schema: application/x-www-form-urlencoded
client_id
string <uuid>
client_secret
string
grant_type
string
Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

500

Server Error

post/auth/oauth/token
Request samples
application/x-www-form-urlencoded
client_id=5b3fa7ba-57d3-4017-a65b-d57dcd2db643&client_secret=string&grant_type=string
Response samples
application/json
{
  • "access_token": "string",
  • "token_type": "string",
  • "expires_in": 0
}