action d7networks_send_post { label: "SendSMS" description: "Send SMS to recipients using D7 SMS Gateway" provider: d7networks method: POST path: "/send" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } content: { type: "string" description: "Message Content" } from: { type: "string" description: "Sender ID / Number" } to: { type: "integer" format: "int64" description: "Destination Mobile Number" } } required: ["Accept", "Content-Type", "content", "from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }