action gsmtasks_emails_resend_create { label: "emails_resend_create" provider: gsmtasks method: POST path: "/emails/{id}/resend/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } created_at: { type: "string" format: "date-time" } external_id: { type: "string" } failed_at: { type: "string" format: "date-time" } format: { type: "string" enum: ["json", "xlsx"] } from_email: { type: "string" format: "email" } id: { type: "string" format: "uuid" } message: { type: "string" } notification: { type: "string" format: "uri" } received_at: { type: "string" format: "date-time" } reply_to_email: { type: "string" format: "email" } sender: { type: "string" format: "uri" } sent_at: { type: "string" format: "date-time" } state: { type: "object" } subject: { type: "string" } to_emails: { type: "array" items: { type: "string" format: "email" } } url: { type: "string" format: "uri" } } required: ["account", "created_at", "failed_at", "id", "message", "notification", "received_at", "sender", "sent_at", "state", "subject", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }