action gsmtasks_signatures_create { label: "signatures_create" provider: gsmtasks method: POST path: "/signatures/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } created_at: { type: "string" format: "date-time" } created_by: { type: "string" format: "uri" } documents: { type: "array" items: { type: "string" format: "uri" } } file: { type: "string" format: "uri" } file_name: { type: "string" } file_upload: { type: "string" format: "uri" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } location: { type: "object" } mimetype: { type: "string" } signer: { type: "object" properties: { company: { type: "string" } emails: { type: "array" items: { type: "string" } } name: { type: "string" } notes: { type: "string" } phones: { type: "array" items: { type: "string" } } } } source: { type: "object" } task: { type: "string" format: "uri" } thumbnail: { type: "string" format: "uri" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } } required: ["created_at", "created_by", "file", "file_name", "file_upload", "id", "mimetype", "signer", "task", "thumbnail", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }