action codat_list_accounts { label: "List accounts" description: "Gets the latest accounts for a company" provider: codat method: GET path: "/companies/{companyId}/data/accounts" encoding: json input: { type: "object" properties: { companyId: { type: "string" format: "uuid" description: "Unique identifier for your SMB in Codat." } orderBy: { type: "string" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } query: { type: "string" } } required: ["companyId", "page"] additionalProperties: false } output: { type: "object" } }