action codat_list_credit_notes { label: "List credit notes" description: "Gets a list of all credit notes for a company, with pagination" provider: codat method: GET path: "/companies/{companyId}/data/creditNotes" encoding: json input: { type: "object" properties: { orderBy: { type: "string" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } query: { type: "string" } } required: ["page"] additionalProperties: false } output: { type: "object" } }