API ReferenceapiidentityGET /v1/oauth/authorize

GET /v1/oauth/authorize

Service: identity · operationId: (none)

OAuth 2.1 authorization endpoint — authorization_code + PKCE

Required scopes

(no scope declared — review service config)

Responses

400 Invalid request parameters

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "OAuth 2 error code (RFC 6749 §5.2)"
    },
    "error_description": {
      "type": "string",
      "description": "Human-readable error message"
    },
    "error_uri": {
      "type": "string",
      "description": "URI for more info"
    }
  },
  "required": [
    "error",
    "error_description"
  ]
}

Example

curl -X GET https://identity.platform.loop.health/v1/oauth/authorize \
  -H "Authorization: Bearer $ACCESS_TOKEN"