Skip to main content
POST
/
token
Retrieve a new access token
curl --request POST \
  --url https://sandbox.nmbr.co/services/payroll/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company_id": "<id>"
}
'
{
  "access_token": "<token>",
  "expires_in": 60,
  "expires_at": "2026-01-01T01:00:00.000000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
company_id
string
required

Response

200 - application/json

OK