SerenAI

Pay Per Call Agentic Commerce

PublisherOAuthProviderResponse

Response type for OAuth provider (excludes sensitive fields)

Properties

PropertyTypeRequiredDescription
created_at string Yes
custom_auth_params any No Custom provider-specific authorization URL parameters
description string,null No
id string Yes
is_active boolean Yes
logo_url string,null No
name string Yes
organization_id string,null No
scopes Array<string> Yes
slug string Yes
View JSON Schema
{
  "type": "object",
  "description": "Response type for OAuth provider (excludes sensitive fields)",
  "required": [
    "id",
    "slug",
    "name",
    "scopes",
    "is_active",
    "created_at"
  ],
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "custom_auth_params": {
      "description": "Custom provider-specific authorization URL parameters"
    },
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "is_active": {
      "type": "boolean"
    },
    "logo_url": {
      "type": [
        "string",
        "null"
      ]
    },
    "name": {
      "type": "string"
    },
    "organization_id": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    },
    "scopes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "slug": {
      "type": "string"
    }
  }
}