POST
/
oauth
/
token
curl --request POST \
  --url https://app.attio.com/oauth/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data client_id=3c90c3cc-0d44-4b50-8888-8dd25736052a \
  --data 'client_secret=<string>' \
  --data grant_type=authorization_code \
  --data 'code=<string>'
{
  "access_token": "<string>",
  "token_type": "Bearer"
}

Body

application/x-www-form-urlencoded

Response

200 - application/json
Success

The response is of type object.