Skip to main content
Get Merchant Access Token
curl --request POST \
  --url https://api.revolv3.com/api/Authentication/token \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "clientId": "clientIdentifier",
  "clientSecret": "clientSecret"
}
'
{
"token_type": "Bearer",
"expires_in": 3599,
"ext_expires_in": 3599,
"access_token": "thisisagianttokenhash1NiIsImtpZCI6IlNzWnNCTmhaY0YzUTlTNHRycFFCVEJ5TlthisisagianttokenhashTQ0MTMiLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vZjAyMzQ1MDEtMjdkZC00NTY1LWI1NDUtNDBlZDFmZjNjZDU1L3YyLjAiLCJpYXQiOjE1OTEyODthisisagianttokenhashhwIjoxNTkxMjkzODYzLCJhaW8iOiI0MmRnWURBTDhGTU5iNUgwOGF4thisisagianttokenhashYmExN2VkLTExMGMtNDVmthisisagianttokenhashmF6cGFjciI6IjEiLCJ0aWQiOiJmMDIzNDUwMS0yN2RkLTQ1NjUtYjU0NS00MGVkMWZmM2NkNTUiLCJ1dGkiOiJWOEhIbXVfZ1RVZUZQQ0pKNF91b0FBIiwidmVyIjoiMi4wIn0.rrQVOMQ2M3xhBeA96fOeidrghJep_DEC0-y-WTlsZu37rO18FgTBAp-tNeMasrLZlEcP6O2Ij8OqxY8yqxmIaPoaXpH9f8DN6nkthisisagianttokenhashlCDGp6zUdEb0XDA2-JXbSbs918g9DPBjuTDio1-Cithisisagianttokenhash8C4-H1XZfRN4Z7IMthisisagianttokenhashxp8lqK66NrXI2RtihtBs6gI3GKpfhok-H6_NvUaQQthisisagianttokenhashOHlKrKQ6D2fUIcXg",
"isExpired": false,
"expirationTime": "2025-11-17T11:45:40.2233678Z"
}

Body

clientId
string
required

The client unique merchant identifier for authentication.

Minimum string length: 1
clientSecret
string
required

The merchant's secret used to verify their identity.

Minimum string length: 1

Response

The credentials provided were valid, and a new access token has been successfully obtained.

token_type
string

The token type, returns only Bearer.

expires_in
integer<int32>

The remaining lifetime of the access token in seconds.

ext_expires_in
integer<int32>

The remaining lifetime of the access token in seconds.

access_token
string

JWT token that must be included in the Authorization header.

isExpired
boolean

Whether the token expired or not.

expirationTime
string<YYYY-MM-DDThh:mm:ss>

A timestamp expressed in UTC, indicating the exact moment the access token will expire.