# `Twilio.Oauth.V1.AuthorizeService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/oauth/v1/authorize_service.ex#L2)

Service for Authorize API operations.

Operations: `list`

# `list`

```elixir
@spec list(Twilio.Client.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieves authorize uri

Operation: `FetchAuthorize` | Tags: OauthV1Authorize

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `ResponseType` | string | Response Type |
| `ClientId` | string | The Client Identifier |
| `RedirectUri` | string | The url to which response will be redirected to |
| `Scope` | string | The scope of the access request |
| `State` | string | An opaque value which can be used to maintain state between the request and callback |

# `stream`

```elixir
@spec stream(Twilio.Client.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Retrieves authorize uri (lazy auto-pagination).

---

*Consult [api-reference.md](api-reference.md) for complete listing*
