POST
/
auth
/
issue-token
curl --request POST \
  --url https://api.courier.com/auth/issue-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "scope": "<string>",
  "expires_in": "<string>"
}'
{
  "token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
scope
string
required
expires_in
string
required

Response

200 - application/json
token
string | null