action gsmtasks_billing_customers_create { label: "billing_customers_create" provider: gsmtasks method: POST path: "/billing/customers/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } braintree_id: { type: "string" } company: { type: "string" } created_at: { type: "string" format: "date-time" } email: { type: "string" format: "email" } first_name: { type: "string" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } last_name: { type: "string" } payment_method_nonce: { type: "string" } phone: { type: "string" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } vat: { type: "string" } website: { type: "string" } } required: ["account", "created_at", "id", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }