Merge · Schema

ApplicationCredentialPublicCreate

Public API request body for creating an application credential.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
connector_slug string Slug of the connector to create an OAuth app for.
client_id string
client_secret stringnull
external_id stringnull
View JSON Schema on GitHub

JSON Schema

merge-applicationcredentialpubliccreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationCredentialPublicCreate",
  "title": "ApplicationCredentialPublicCreate",
  "type": "object",
  "properties": {
    "connector_slug": {
      "type": "string",
      "description": "Slug of the connector to create an OAuth app for."
    },
    "client_id": {
      "type": "string"
    },
    "client_secret": {
      "type": [
        "string",
        "null"
      ]
    },
    "external_id": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "connector_slug",
    "client_id"
  ],
  "description": "Public API request body for creating an application credential."
}