POST
/
v1
/
oauth
/
token
curl --request POST \
  --url https://public-api.setle.app/v1/oauth/token \
  --header 'x-setle-client-id: <x-setle-client-id>' \
  --header 'x-setle-client-secret: <x-setle-client-secret>'
{
  "access_token": "<string>",
  "expires_in": 123,
  "token_type": "<string>"
}
You will need valid Client Credentials (client_id + client_secret) to call this endpoint. See Quickstart or Authentication to get started.

We recommend that you only call this endpoint when you really need a new access_token for your client. You can reuse the token in your service and only call this endpoint when the time you retrieved this + expires_in is going to pass.

Headers

x-setle-client-id
string
required
x-setle-client-secret
string
required

Response

200
application/json
Successfully authenticated and generated Bearer token.
access_token
string
required
expires_in
number
required
token_type
string
required