Authentication

Before you can call any API endpoint, you must first acquire an OAuth 2 authorization token. This is done by calling the following POST endpoint:

POST /api/v1/access-token/b2b

ParameterData TypeDescription

grantType

String

value must be client_credentials

additionalInfo

Object

Request Body


{
   "grantType":"client_credentials"
   "additionalInfo":{}
}

Last updated