action gsmtasks_sms_create { label: "sms_create" provider: gsmtasks method: POST path: "/sms/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } alphanumeric_sender_id: { type: "string" } created_at: { type: "string" format: "date-time" } error: { type: "string" } external_id: { type: "string" } failed_at: { type: "string" format: "date-time" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } message: { type: "string" } notification: { type: "string" format: "uri" } phone: { type: "string" } received_at: { type: "string" format: "date-time" } segments_count: { type: "integer" } sender: { type: "string" format: "uri" } sent_at: { type: "string" format: "date-time" } state: { type: "object" } url: { type: "string" format: "uri" } } required: ["account", "created_at", "failed_at", "id", "notification", "phone", "received_at", "sender", "sent_at", "state", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }