action codat_get_direct_costs { label: "List direct costs" description: "Gets the direct costs for the company." provider: codat method: GET path: "/companies/{companyId}/connections/{connectionId}/data/directCosts" 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" } }