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

Query Parameters

client_id
string
required
Your app’s client ID. You can find this in your app’s settings pages at build.attio.com.
response_type
string
required
The response type. This should always be "code".
redirect_uri
string
required
The URL to redirect to after the user authorizes access to your app. This URL must exactly match one of the registered redirect URLs in your app’s settings pages at build.attio.com.
state
string
A random string to prevent CSRF attacks. Set this when starting the OAuth flow and verify it matches when the user is redirected back to your app.

Response

302
Redirect
After the user approves the connection, they are redirected to the redirect_uri with a code query parameter. If provided, the original state is also included.