Auth0 · Schema

FlowActionSlackPostMessageParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
text string
attachments array
View JSON Schema on GitHub

JSON Schema

auth0-flowactionslackpostmessageparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionSlackPostMessageParams",
  "title": "FlowActionSlackPostMessageParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "text": {
      "type": "string"
    },
    "attachments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FlowActionSlackPostMessageParamsAttachment"
      }
    }
  }
}