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 https://tokoapisnap-stg.netzme.com/api/{version}/access-token/b2b

The available versions for this api are v1 and v2.

ParameterData TypeDescription

grantType

String

value must be client_credentials

additionalInfo

Object

Request Body


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

Last updated