action gsmtasks_clients_create { label: "clients_create" provider: gsmtasks method: POST path: "/clients/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } archived: { type: "boolean" } contact_addresses: { type: "array" items: { type: "object" } } created_at: { type: "string" format: "date-time" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } name: { type: "string" } slug: { type: "string" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } } required: ["account", "contact_addresses", "created_at", "id", "name", "slug", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }