Paragon · Example Payload

Actionkit List Actions Example

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Actionkit List Actions Example is an example object payload from Paragon, with 1 top-level field. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

actions

Example Payload

Raw ↑
{
  "actions": [
    {
      "name": "SLACK_SEND_MESSAGE",
      "description": "Send a message to a Slack channel as the Connected User.",
      "integration": "slack",
      "parameters": {
        "type": "object",
        "required": ["channelId", "text"],
        "properties": {
          "channelId": { "type": "string" },
          "text": { "type": "string" }
        }
      }
    },
    {
      "name": "SALESFORCE_CREATE_RECORD",
      "description": "Create a Salesforce record in the specified object.",
      "integration": "salesforce",
      "parameters": {
        "type": "object",
        "required": ["object", "fields"],
        "properties": {
          "object": { "type": "string" },
          "fields": { "type": "object" }
        }
      }
    }
  ]
}