Summary
Gets a page of component group documents.
Description
Gets a page of component group documents.
Route
GET /automation-studio/component-groups
Roles
Parameters
Name | Type | Required | Description |
---|---|---|---|
queryParameters | object | yes | Parameters for filtering, paginating, projecting, and sorting component group documents. |
{ "queryParameters": { "limit": 50, "skip": 1, "order": 1, "sort": "name", "include": "description", "exclude": "description", "in": "in deserunt", "not-in": "quis consectetur", "equals": "exercitation ut non fugiat", "contains": "culpa non aute", "starts-with": "ex amet laboris", "ends-with": "Excepteur esse pariatur fugiat" } }
{ "type": "object", "properties": { "queryParameters": { "title": "queryParameters", "type": "object", "properties": { "limit": { "type": "integer", "description": "Number of results to return. Used for pagination.", "default": 25, "minimum": 0, "examples": [ 1, 10, 50 ] }, "skip": { "type": "integer", "description": "Number of results to skip. Used for pagination.", "default": 0, "minimum": 0, "examples": [ 1, 10, 50 ] }, "order": { "type": "integer", "description": "Sort direction, 1 for ascending and -1 for descending.", "default": 1, "enum": [ -1, 1 ] }, "sort": { "type": "string", "description": "Field to sort by", "default": "name", "enum": [ "name" ] }, "include": { "type": "string", "description": "Inclusive projection operator formatted as a comma-delineated list. '_id' will be included implicitly unless excluded with 'exclude=_id'. May only be used in conjunction with 'exclude' when 'exclude=_id'.", "examples": [ "name", "description", "name,description" ] }, "exclude": { "type": "string", "description": "Exclusive projection operator formatted as a comma-delineated list. May only be used in conjunction with 'include' when 'exclude=_id'.", "examples": [ "_id", "description", "_id,description" ] }, "in": { "description": "Search for fields exactly matching one of the given list options", "type": "string" }, "not-in": { "description": "Search for fields not exactly matching one of the given list options", "type": "string" }, "equals": { "description": "Returns results where the specified fields exactly match the given match string(s).", "type": "string" }, "contains": { "description": "Returns results where the specified fields contain the given match string(s).", "type": "string" }, "starts-with": { "description": "Returns results where the specified fields start with the given match string(s).", "type": "string" }, "ends-with": { "description": "Returns results where the specified fields end in the given match string(s).", "type": "string" } } } }, "required": [ "queryParameters" ], "additionalProperties": false }
Return
Name | Type | Description |
---|---|---|
result | object | Results for the given search parameters. |
{ "items": [ { "name": "test", "gbacRead": [ "do", "dolor adipisicing elit officia", "in", "eiusmod labore laboris voluptate", "ullamco cillum tempor commodo quis" ], "members": [ { "path": "non adipisicing ad do", "type": "component", "sourceCollection": "aliqua labore magna", "ref": "sed labore est dolore tempor" }, { "path": "magna eiusmod exercitation et", "type": "component", "sourceCollection": "velit dolore", "ref": "cillum irure esse aute" }, { "path": "nulla in laborum laboris", "type": "component", "sourceCollection": "non officia do", "ref": "nisi consectetur velit" }, { "path": "aliqua ex sed", "type": "component", "sourceCollection": "ipsum", "ref": "sint" } ], "_id": "D1C4EbbAd07ec6A6de0e2f97", "description": "sunt culpa incididunt dolore", "gbacWrite": [ "Lorem", "laborum Ut sit in", "laborum incididunt ea amet", "adipisicing deserunt laboris Duis", "Lorem ipsum" ], "version": 1 }, { "name": "test", "gbacRead": [ "nulla occaecat" ], "members": [ { "path": "amet", "type": "component", "sourceCollection": "et qui", "ref": "ullamco labore ex" }, { "path": "sed", "type": "component", "sourceCollection": "amet", "ref": "et mollit Duis" }, { "path": "reprehenderit esse aute et ea", "type": "component", "sourceCollection": "enim dolore irure ad tempor", "ref": "consectetur reprehenderit anim" }, { "path": "deserunt dolore", "type": "component", "sourceCollection": "reprehenderit dolore tempor labore dolor", "ref": "dolor elit velit commodo magna" } ], "_id": "F9a17D3ce28F00779BD6ee51", "description": "sit", "gbacWrite": [ "dolor amet Duis", "dolor ut laboris do cupidatat", "nisi", "voluptate Excepteur Duis in incididunt", "exercitation Excepteur amet" ], "version": 1 }, { "name": "test", "gbacRead": [ "ut Excepteur", "consequat Ut sunt fugiat", "tempor nulla ex", "enim eu veniam ut" ], "members": [ { "path": "amet aute irure", "type": "component", "sourceCollection": "adipisicing", "ref": "ea adipisicing incididunt" } ], "_id": "eFebb854C4F2b4b1bAB6Ce71", "description": "sit eu in deserunt", "gbacWrite": [ "sint nostrud laboris irure ut", "consequat", "cupidatat" ], "version": 1 }, { "name": "test", "gbacRead": [ "magna minim aliquip", "nostrud in", "proident", "adipisicing est" ], "members": [ { "path": "dolor magna sint sunt enim", "type": "component", "sourceCollection": "magna cillum id ea ex", "ref": "sed" }, { "path": [ "nisi laborum", "dolore" ], "type": "folder" } ], "_id": "B6A46d9059E26E16D06AF153", "description": "quis sint in fugiat", "gbacWrite": [ "veniam proident officia", "dolor qui", "Duis elit", "labore Ut dolor nulla in" ], "version": 1 } ], "total": -97320092, "start": -71723547, "end": -74551773, "count": 24296561, "next": null, "previous": "enim" }
{ "title": "result", "type": "object", "properties": { "items": { "type": "array", "items": { "$ref": "componentGroup" } }, "total": { "type": "integer", "description": "Total number of documents matching the given query parameters." }, "start": { "type": "integer", "description": "Search index of first document in the items array." }, "end": { "type": "integer", "description": "Search index of the last document in the items array." }, "count": { "type": "integer", "description": "Length of the items array." }, "next": { "description": "URI pointing to the next set of paginated results. Preserves previous search and projection parameters. Null if returning the last page of results.", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "previous": { "description": "URI pointing to the previous set of paginated results. Preserves previous search and projection parameters. Null if returning the first page of results.", "oneOf": [ { "type": "string" }, { "type": "null" } ] } } }