# Validate an authorization request and return consent screen info (/developer/api-reference/oauth/OAuthInternalController_consentInfo)

## GET /oauth/authorize/info
```json
{
  "operationId": "OAuthInternalController_consentInfo",
  "parameters": [
    {
      "name": "clientId",
      "required": true,
      "in": "query",
      "schema": {
        "minLength": 1,
        "type": "string"
      }
    },
    {
      "name": "redirectUri",
      "required": true,
      "in": "query",
      "schema": {
        "format": "uri",
        "type": "string"
      }
    },
    {
      "name": "scope",
      "required": true,
      "in": "query",
      "schema": {
        "minLength": 1,
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": ""
    }
  },
  "summary": "Validate an authorization request and return consent screen info",
  "tags": [
    "OAuth"
  ]
}
```