curl --request POST \
  --url https://api.nomba.com/v1/auth/token/issue \
  --header 'Content-Type: application/json' \
  --header 'accountId: <accountid>' \
  --data '{
  "grant_type": "client_credentials",
  "client_id": "2242b79d-f2cf-4ccc-ada1-e890bd1a9f0d",
  "client_secret": "JFJ8yq3G4+DvjivJMsji0YkZBkkKdSdjifR+TgT9RLM="
}'
{
  "code": "00",
  "description": "Success",
  "data": {
    "businessId": "01a10aeb-d989-460a-bbde-9842f2b4320f",
    "access_token": "eyJhbGciOiJIUzI1NiJ9.eyJHOjhmYWM4M2FjLTc2YjAtNDM1Zi1hYTM1LThkOTU3ZGQ5MjdkZCI6Ikc6OGZhYzgzYWMtNzZiMC00MzVmLWFhMzUtOGQ5NTdkZDkyN2RkIiwiUjpURUFNU19PV05FUiI6IlI6VEVBTVNfT1dORVIiLCJFbWFpbDp2aWN0b3JzaG9hZ2FAZ21haWwuY29tIjoiRW1haWw6dmljdG9yc2hvYWdhQGdtYWlsLmNvbSIsImlhdCI6MTY4MTkxODU3OSwic3ViIjoiNWUyNmNmYjAtNTI5Zi00MTdiLWI4ZDItYWJjNDcxZjRjOWRiIiwiZXhwIjoxNjgxOTIyMTc5fQ.lQOsyhR1gajKdzE9IHQEtxhQyUrArctEDZiP9pWVTFY",
    "refresh_token": "01h4gdx2tctxfjgacbdwrcvs5d1688473602892",
    "expiresAt": "2022-07-08T14:33:00Z"
  }
}

Obtain access token

Access this resource in the playground

POST /auth/issue/token

Request body

grant_type
string
required

The grant type of the authentication

client_id
string
required

The client’s id as obtained from your Nomba dashboard

client_secret
string
required

The client’s secret as obtained from your Nomba dashboard. It is securely generated by the Nomba system

Response body

businessId
string
required

The accountId of the merchant/business that is connecting to the Nomba system via API

access_token
string
required

A JWT (Json Web Token) token used to grant access to resources on the Nomba API

refresh_token
string
required

A Base64 Encoded String used to refresh an expired access_token

expiresAt
string
required

The date and time this entity was created. This value uses Coordinated Universal Time (UTC) and ISO 8601 format – YYYY-MM-DDThh:mm:ssZ