action codat_get_direct_incomes { label: "Get direct incomes" description: "Gets the direct incomes for a given company." provider: codat method: GET path: "/companies/{companyId}/connections/{connectionId}/data/directIncomes" 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" } }