action codat_list_direct_income_attachments { label: "List direct income attachments" description: "Gets all attachments for the specified direct income for a given company." provider: codat method: GET path: "/companies/{companyId}/connections/{connectionId}/data/directIncomes/{directIncomeId}/attachments" encoding: json output: { type: "object" properties: { attachments: { type: ["array", "null"] items: { type: "object" description: "The Codat API supports pulling and pushing of file attachments for invoices, bills, direct costs, and direct incomes.\n\n> **Retrieving attachments**\n> \n> If a company is authorized, you can query the Codat API to read, download, and upload attachments without requiring a fresh sync of data.\n\nUnlike other data types, Codat doesn't support sync settings for attachments.\n\nView the coverage for accounts in the Data coverage explorer.\n" } } } } }