---
title: "Get Authorization Page"
method: GET
path: "/oauth2/v3/authorization"
tags: ["Identity"]
---

# Get Authorization Page

`GET /oauth2/v3/authorization`

The Authorization resource is used to initiate the process for obtaining an authorization code that can be used to obtain an access token.

The Authorization resource is the Web page where a user is to be directed to authenticate. Upon successful authentication, the user will be redirected to the specified redirect URI with the authorization "code" and "state" query parameters as defined by [RFC 6749, Section 4.1.2](http://tools.ietf.org/html/rfc6749#section-4.1.2). If authorization is unsuccessful, the user will be redirected to the specified redirect URI with the "error" query parameter as defined by [RFC 6749, Section 4.1.2.1](http://tools.ietf.org/html/rfc6749#section-4.1.2.1).

## Query parameters

- `response_type` 'code', required
- `client_id` string, required
- `redirect_uri` string
- `scope` string
- `code_challenge` string
- `code_challenge_method` 'S256' | 'plain'
- `state` string
- `prompt` 'login'

## Response `200`

The read was successful.

## Other responses

- `400` — Invalid request parameters
- `500` — Internal server error

---

[API](https://skmtc.net/familysearch/apis/authentication-endpoints.md) · [All operations](https://skmtc.net/familysearch/apis/authentication-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/familysearch/authentication-endpoints/revisions/2b5020574a62/schema)
