action surevoip_get_customer { label: "Represents a customer" provider: surevoip method: GET path: "/customers/{account}" encoding: json input: { type: "object" properties: { account: { type: "integer" } } required: ["account"] additionalProperties: false } output: { type: "object" properties: { address: { type: "string" } balance: { type: "integer" } city: { type: "string" } company_name: { type: "string" } company_website: { type: "string" } country: { type: "string" } creditlimit: { type: "string" } email: { type: "string" } fax: { type: "string" } firstname: { type: "string" } lastname: { type: "string" } phone: { type: "string" } postcode: { type: "string" } state: { type: "string" } username: { type: "integer" } } } }