POST
/
oauth
/
token
curl --request POST \
  --url https://pointer-rcs-api-node.pontaltech.com.br/oauth/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'grant_type=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "expires_in": 123,
  "token_type": "<string>"
}

Body

application/x-www-form-urlencoded
grant_type
string
required
client_secret
string
required

Response

200
application/json
Successful response
access_token
string
expires_in
number
token_type
string