action bigredcloud_user_defined_fields_get { label: "Returns a list of company's User Defined Fields. Supports OData querying protocol. \nFiltering is allowed by \"categoryTypeId\" field. \nOrdering is allowed by \"id\" and \"orderIndex\" fields." provider: bigredcloud method: GET path: "/v1/userDefinedFields" encoding: json output: { type: "object" properties: { Count: { type: "integer" format: "int64" } Items: { type: "array" items: { type: "object" properties: { categoryTypeId: { type: "integer" format: "int64" } description: { type: "string" } id: { type: "integer" format: "int64" } orderIndex: { type: "integer" format: "int32" } } } } NextPageLink: { type: "string" } } } }