Stytch · Schema

api_user_v1_UserConnectedApp

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
connected_app_id string The ID of the Connected App.
name string The name of the Connected App.
description string A description of the Connected App.
client_type string The type of Connected App. Supported values are `first_party`, `first_party_public`, `third_party`, and `third_party_public`.
scopes_granted string The scopes granted to the Connected App at the completion of the last authorization flow.
logo_url string The logo URL of the Connected App, if any.
View JSON Schema on GitHub

JSON Schema

stytch-api-user-v1-userconnectedapp-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_user_v1_UserConnectedApp",
  "title": "api_user_v1_UserConnectedApp",
  "type": "object",
  "properties": {
    "connected_app_id": {
      "type": "string",
      "description": "The ID of the Connected App."
    },
    "name": {
      "type": "string",
      "description": "The name of the Connected App."
    },
    "description": {
      "type": "string",
      "description": "A description of the Connected App."
    },
    "client_type": {
      "type": "string",
      "description": "The type of Connected App. Supported values are `first_party`, `first_party_public`, `third_party`, and `third_party_public`."
    },
    "scopes_granted": {
      "type": "string",
      "description": "The scopes granted to the Connected App at the completion of the last authorization flow."
    },
    "logo_url": {
      "type": "string",
      "description": "The logo URL of the Connected App, if any."
    }
  },
  "required": [
    "connected_app_id",
    "name",
    "description",
    "client_type",
    "scopes_granted"
  ]
}