Novu · Schema

CreateIntegrationRequestDto

JSON Schema for Novu CreateIntegrationRequestDto.

NotificationMessagingIn-AppEmailSMSPushChatWorkflowsOpen-SourceSubscribersTopicsInboxWorkflow OrchestrationMulti-ChannelDigestMCPFrameworkReact

Properties

Name Type Description
name string The name of the integration
identifier string The unique identifier for the integration
_environmentId string The ID of the associated environment
providerId string The provider ID for the integration
channel string The channel type for the integration. Not required for agent-kind integrations.
kind string Distinguishes delivery integrations from agent-runtime integrations. Defaults to "delivery". Agent integrations do not require a channel.
credentials object The credentials for the integration
active boolean If the integration is active, the validation on the credentials field will run
check boolean Flag to check the integration status
conditions array Conditions for the integration
configurations object Configurations for the integration
View JSON Schema on GitHub

JSON Schema

novu-create-integration-request-dto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/novu/main/json-schema/novu-create-integration-request-dto-schema.json",
  "title": "CreateIntegrationRequestDto",
  "description": "JSON Schema for Novu CreateIntegrationRequestDto.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the integration"
    },
    "identifier": {
      "type": "string",
      "description": "The unique identifier for the integration"
    },
    "_environmentId": {
      "type": "string",
      "description": "The ID of the associated environment",
      "format": "uuid"
    },
    "providerId": {
      "type": "string",
      "description": "The provider ID for the integration"
    },
    "channel": {
      "enum": [
        "in_app",
        "email",
        "sms",
        "chat",
        "push"
      ],
      "type": "string",
      "description": "The channel type for the integration. Not required for agent-kind integrations."
    },
    "kind": {
      "enum": [
        "delivery",
        "agent"
      ],
      "type": "string",
      "description": "Distinguishes delivery integrations from agent-runtime integrations. Defaults to \"delivery\". Agent integrations do not require a channel."
    },
    "credentials": {
      "description": "The credentials for the integration",
      "allOf": [
        {
          "type": "object",
          "properties": {
            "apiKey": {
              "type": "string"
            },
            "user": {
              "type": "string"
            },
            "secretKey": {
              "type": "string"
            },
            "domain": {
              "type": "string"
            },
            "password": {
              "type": "string"
            },
            "host": {
              "type": "string"
            },
            "port": {
              "type": "string"
            },
            "secure": {
              "type": "boolean"
            },
            "region": {
              "type": "string"
            },
            "accountSid": {
              "type": "string"
            },
            "messageProfileId": {
              "type": "string"
            },
            "token": {
              "type": "string"
            },
            "from": {
              "type": "string"
            },
            "senderName": {
              "type": "string"
            },
            "projectName": {
              "type": "string"
            },
            "applicationId": {
              "type": "string"
            },
            "clientId": {
              "type": "string"
            },
            "requireTls": {
              "type": "boolean"
            },
            "ignoreTls": {
              "type": "boolean"
            },
            "tlsOptions": {
              "type": "object"
            },
            "baseUrl": {
              "type": "string"
            },
            "webhookUrl": {
              "type": "string"
            },
            "redirectUrl": {
              "type": "string"
            },
            "hmac": {
              "type": "boolean"
            },
            "serviceAccount": {
              "type": "string"
            },
            "ipPoolName": {
              "type": "string"
            },
            "apiKeyRequestHeader": {
              "type": "string"
            },
            "secretKeyRequestHeader": {
              "type": "string"
            },
            "idPath": {
              "type": "string"
            },
            "datePath": {
              "type": "string"
            },
            "apiToken": {
              "type": "string"
            },
            "authenticateByToken": {
              "type": "boolean"
            },
            "authenticationTokenKey": {
              "type": "string"
            },
            "instanceId": {
              "type": "string"
            },
            "alertUid": {
              "type": "string"
            },
            "title": {
              "type": "string"
            },
            "imageUrl": {
              "type": "string"
            },
            "state": {
              "type": "string"
            },
            "externalLink": {
              "type": "string"
            },
            "channelId": {
              "type": "string"
            },
            "phoneNumberIdentification": {
              "type": "string"
            },
            "accessKey": {
              "type": "string"
            },
            "appSid": {
              "type": "string"
            },
            "senderId": {
              "type": "string"
            },
            "tenantId": {
              "type": "string"
            },
            "AppIOBaseUrl": {
              "type": "string"
            },
            "signingSecret": {
              "type": "string"
            },
            "outboundIntegrationId": {
              "type": "string"
            },
            "useFromAddressOverride": {
              "type": "boolean"
            },
            "fromAddressOverride": {
              "type": "string"
            },
            "emailSlugPrefix": {
              "type": "string",
              "description": "Agent default shared inbox slug prefix used in `{emailSlugPrefix}-{agentId}@<shared-domain>`. Only meaningful on the NovuAgent email integration."
            },
            "externalEnvironmentId": {
              "type": "string",
              "description": "Claude Managed Agents: ID of the Anthropic environment tied to this integration. Hydrated by the API at integration provisioning time."
            },
            "externalWorkspaceId": {
              "type": "string",
              "description": "Claude Managed Agents: id of the Anthropic workspace used in console deep links. Defaults to `'default'` (the Default Workspace). Set this when the API key is scoped to a custom workspace (e.g. `wrkspc_\u2026`)."
            }
          }
        }
      ]
    },
    "active": {
      "type": "boolean",
      "description": "If the integration is active, the validation on the credentials field will run"
    },
    "check": {
      "type": "boolean",
      "description": "Flag to check the integration status"
    },
    "conditions": {
      "description": "Conditions for the integration",
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "isNegated": {
            "type": "boolean"
          },
          "type": {
            "type": "string",
            "enum": [
              "BOOLEAN",
              "TEXT",
              "DATE",
              "NUMBER",
              "STATEMENT",
              "LIST",
              "MULTI_LIST",
              "GROUP"
            ]
          },
          "value": {
            "type": "string",
            "enum": [
              "AND",
              "OR"
            ]
          },
          "children": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "field": {
                  "type": "string"
                },
                "value": {
                  "type": "string"
                },
                "operator": {
                  "type": "string",
                  "enum": [
                    "LARGER",
                    "SMALLER",
                    "LARGER_EQUAL",
                    "SMALLER_EQUAL",
                    "EQUAL",
                    "NOT_EQUAL",
                    "ALL_IN",
                    "ANY_IN",
                    "NOT_IN",
                    "BETWEEN",
                    "NOT_BETWEEN",
                    "LIKE",
                    "NOT_LIKE",
                    "IN"
                  ]
                },
                "on": {
                  "type": "string",
                  "enum": [
                    "subscriber",
                    "payload"
                  ]
                }
              },
              "required": [
                "field",
                "value",
                "operator",
                "on"
              ]
            }
          }
        },
        "required": [
          "isNegated",
          "type",
          "value",
          "children"
        ]
      }
    },
    "configurations": {
      "type": "object",
      "description": "Configurations for the integration"
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/novu-create-integration-request-dto"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.