Merge · Schema

ApplicationCredentialPublicResponse

Public API response — excludes scope override fields.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
connector_slug string
client_id string
external_id stringnull
is_global_default boolean
created_at string
modified_at string
View JSON Schema on GitHub

JSON Schema

merge-applicationcredentialpublicresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationCredentialPublicResponse",
  "title": "ApplicationCredentialPublicResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "connector_slug": {
      "type": "string"
    },
    "client_id": {
      "type": "string"
    },
    "external_id": {
      "type": [
        "string",
        "null"
      ]
    },
    "is_global_default": {
      "type": "boolean"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "modified_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "connector_slug",
    "client_id",
    "external_id",
    "is_global_default",
    "created_at",
    "modified_at"
  ],
  "description": "Public API response \u2014 excludes scope override fields."
}