> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Authorize

> Redirect the user to the /authorize endpoint after a successful PAR request to complete the Authorization Code Flow.

## Endpoint

`GET /authorize`

After calling the `/oauth/par` endpoint, redirect the end user to the `/authorize` endpoint using a `GET` call.

<Note>
  The `/authorize` endpoint will respond based on the parameters passed to the `/oauth/par` endpoint. If you request a `response_type`, you should receive an authorization code to use at the `/oauth/token` endpoint.
</Note>

## Query Parameters

<ParamField query="client_id" type="string" required>
  The `client_id` of your application. Required.
</ParamField>

<ParamField query="request_uri" type="string" required>
  The `request_uri` value received from the `/oauth/par` endpoint. Required.
</ParamField>

## Response Messages

| Status | Description                              |
| ------ | ---------------------------------------- |
| 302    | Redirects to the specified redirect URI. |
