curl --request POST \
--url https://sandbox.api.fin.com/v1/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"client_secret": "<string>"
}
'{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"access_token_ttl": "2025-12-28 10:34:45+00",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token_ttl": "2025-12-28 10:34:45+00",
"current_time": "2025-12-21 10:34:45+00"
}Generate an access token using client credentials
curl --request POST \
--url https://sandbox.api.fin.com/v1/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"client_secret": "<string>"
}
'{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"access_token_ttl": "2025-12-28 10:34:45+00",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token_ttl": "2025-12-28 10:34:45+00",
"current_time": "2025-12-21 10:34:45+00"
}client_id and client_secret from the
API Keys section
of the Orchestration Dashboard
YYYY-MM-DD HH:MM:SS+00Token issued successfully
The access token for API authentication
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Access token expiration timestamp
"2025-12-28 10:34:45+00"
The refresh token for obtaining new access tokens
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Refresh token expiration timestamp
"2025-12-28 10:34:45+00"
Current server timestamp
"2025-12-21 10:34:45+00"