GET
/
authorize
curl --request GET \
  --url https://app.attio.com/authorize
{}

Query Parameters

client_id
string
required

The client ID of your integration (this can be found in your integration settings page).

response_type
enum<string>
required

The response type. This should always be code.

Available options:
code
redirect_uri
string
required

The URL to redirect to after the user has authorized the integration. This URL must exactly match one of the registered redirect URLs in your integration settings page.

state
string

A random string to prevent CSRF attacks. You should set this when starting the OAuth flow and check that when the user is redirected back to your app that it matches this value.

Response

302 - application/json
After the user approves the connection, they are sent to the redirect_uri with an authorization code.

The response is of type object.