action id4i_enqueue_custom_message { label: "Enqueue a custom message" description: "Enqueue a custom organisation message with custom data." provider: id4i method: POST path: "/api/v1/organizations/{organizationId}/messaging/enqueueCustomMessage" encoding: json input: { type: "object" properties: { data: { type: "object" description: "Custom data in a map. You may use JSON content" } name: { type: "string" description: "The name of the message (organisation specific)" } organizationId: { type: "string" } } required: ["data", "name", "organizationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }