Skip to main content
POST
/
v1
/
oauth2
/
tokens
Exchange a JWT assertion for an access token
curl --request POST \
  --url https://api.example.com/v1/oauth2/tokens \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'grant_type=<string>' \
  --data 'assertion=<string>'
{
  "accessToken": "<string>",
  "refreshToken": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.zestequity.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

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

Response

Successful Response

accessToken
string
required
refreshToken
string