curl --location --request POST 'https://api.frayit.com/v1/oauth/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"grant_type": "authorization_code",
"code": "abc123authcode",
"client_id": "your-client-id",
"client_secret": "your-client-secret"
}'
{
"access_token": "jwt-token-string",
"token_type": "Bearer",
"expires_in": 3600
}