POST
/
auth
/
token
curl --request POST \
  --url https://api.trychart.com/auth/token \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": "<string>",
  "client_secret": "<string>",
  "code": "<string>",
  "redirect_uri": "<string>"
}'
{
  "taxpayer_id": "<string>",
  "provider_id": "turbotax",
  "access_token": "<string>"
}

Exchange the authorization code for an access token

Body

application/json

Response

200
application/json

Token Response

The response is of type object.