action unicourt_get_causes_of_action_group { label: "CauseOfActionGroup Object." description: "Returns CauseOfActionGroup Object.\n\n## Logical Operators\n| Connector | Description | Example |\n| ------| ------|------|\n| **AND** |Find data containing all connected terms.|**google AND facebook**|\n| **OR** |Find data containing any connected term.| **order OR decision**|\n| **NOT** |Exclude data.| **google NOT apple**.|\n| **“[phrase]”** |Find an exact phrase.| **\"Google Inc”** |\n| **( … )** |Parenthesis may be used to group sets of terms of connectors.| **google (facebook OR apple)**.|\n\n### All Filter Query parameters supported for this API can be found in below schema section. Schema --> CauseOfActionGroupQueryObject\n" provider: unicourt method: GET path: "/masterData/causeOfActionGroup" encoding: json input: { type: "object" properties: { q: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["causeOfActionGroupArray", "nextPageAPI", "object", "pageNumber", "previousPageAPI", "totalCount", "totalPages"] properties: { causeOfActionGroupArray: { type: "array" items: { type: "object" required: ["object", "causeOfActionGroupId", "name", "createdDate"] properties: { causeOfActionGroupId: { type: "string" } createdDate: { type: "string" format: "date-time" description: "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS." } name: { type: "string" } object: { type: "string" } } } } nextPageAPI: { type: "string" format: "uri" description: "Link to next page." } object: { type: "string" } pageNumber: { type: "integer" description: "Page number for which results where obtained." } previousPageAPI: { type: "string" format: "uri" description: "Link to previous page." } totalCount: { type: "integer" description: "Total number of matches found." } totalPages: { type: "integer" description: "Total number of pages to obtain all the objects." } } } }