POST
/
token
curl --request POST \
  --url https://platform.uat.proveapis.com/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data client_id=customer_id \
  --data client_secret=secret \
  --data grant_type=client_credentials
{
  "access_token": "eyJ...",
  "refresh_token": "eyJ...",
  "refresh_expires_in": 3600,
  "token_type": "Bearer",
  "expires_in": 3600
}

Use the following base URLs when integrating:

https://platform.uat.proveapis.com - North America Sandbox Environment

https://platform.proveapis.com - North America Production Environment

Body

application/x-www-form-urlencoded

Response

200
application/json
Successful request.

The response is of type object.