action envoice_client_api_details { label: "Return client details. Activities and invoices included." provider: envoice method: GET path: "/api/client/details" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["id", "x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "object" properties: { AdditionalEmails: { type: "array" description: "Client additional emails contact for CC" items: { type: "object" properties: { Email: { type: "string" description: "CC" } } } } Address: { type: "string" description: "Client business address" } ClientCountryId: { type: "integer" format: "int32" description: "Indicates the country where the clients is from" } ClientCurrencyId: { type: "integer" format: "int32" description: "Indicates the default system currency used by the user for the client" } CompanyRegistrationNumber: { type: "string" description: "Client's Company Registration Number" } CreatedOn: { type: "string" format: "date-time" description: "Date of creation" } DefaultDueDateInDays: { type: "integer" format: "int32" description: "Client custom payment terms" } Email: { type: "string" description: "Client email" } Id: { type: "integer" format: "int32" description: "Entity id" } Name: { type: "string" description: "Name of the client" } PhoneNumber: { type: "string" description: "Client phone numer" } UiLanguageId: { type: "integer" format: "int32" description: "Hold a value of the language in which the invoice will be sent" } Vat: { type: "string" description: "Client's VAT number" } } } }