action bigredcloud_company_settings_get { label: "Returns a list of company settings. Supports OData querying protocol. \nFiltering is forbidden." provider: bigredcloud method: GET path: "/v1/companySettings" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { enableVOCRReporting: { type: "boolean" } id: { type: "integer" format: "int64" } useAllocations: { type: "boolean" } value: { type: "string" } vocrSettingValue: { type: "boolean" } } } } NextPageLink: { type: "string" } } } }