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": 0, "order": 1, "sort": "name", "include": "description", "exclude": "_id", "in": "non", "not-in": "fugiat eu anim cillum", "equals": "dolor", "contains": "Ut aliqua sed", "starts-with": "irure dolore sunt", "ends-with": "in velit commodo" } }
{ "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": [ "proident eu non tempor veniam", "irure proident enim velit aute", "nisi aute" ], "members": [ { "path": "dolor labore in", "type": "component", "sourceCollection": "aliqua dolor eiusmod ex tempor", "ref": "cupidatat sunt amet in dolor" }, { "path": [ "dolore Duis", "dolor ut ullamco" ], "type": "folder" } ], "_id": "E257f27c67D9AfE3Ce6783a4", "description": "qui et do velit", "gbacWrite": [ "pariatur nulla", "exercitation in quis Duis" ], "version": 1 }, { "name": "test", "gbacRead": [ "nisi", "aliquip ex", "incididunt" ], "members": [ { "path": [ "cupidatat dolore", "in laborum", "ullamco" ], "type": "folder" }, { "path": [ "Lorem eu aliquip", "exercitation eiusmod", "enim proident", "id do velit commodo Excepteur" ], "type": "folder" }, { "path": "esse do eu aute", "type": "component", "sourceCollection": "dolor proident sed", "ref": "eiusmod Ut pariatur in Lorem" } ], "_id": "aba1F19c4e35fE50dE5bdbd5", "description": "nostrud eiusmod", "gbacWrite": [ "in reprehenderit officia Excepteur", "dolor ullamco nisi", "sit sunt qui Ut", "esse laborum id in", "id mollit aliquip laborum" ], "version": 1 }, { "name": "test", "gbacRead": [ "aliquip in id qui ullamco", "sed", "esse culpa" ], "members": [ { "path": [ "officia", "ad exercitation eiusmod", "quis culpa", "in deserunt amet est", "sint id" ], "type": "folder" } ], "_id": "9A6c80c95761cCe3Ef4CEdA4", "description": "nisi aliquip", "gbacWrite": [ "adipisicing consectetur Ut ex aliquip", "labore sit incididunt" ], "version": 1 }, { "name": "test", "gbacRead": [ "dolore sunt sed", "mollit pariatur aliquip", "culpa", "ut" ], "members": [ { "path": [ "elit pariatur", "pariatur in cillum et ea", "veniam enim ex nulla ullamco" ], "type": "folder" }, { "path": [ "irure in tempor" ], "type": "folder" }, { "path": [ "ad aute in nostrud", "Duis laboris esse", "anim officia", "dolore sunt" ], "type": "folder" }, { "path": "occaecat dolore nisi", "type": "component", "sourceCollection": "Lorem dolor ad commodo sit", "ref": "et laborum nisi est" } ], "_id": "bEd2D7c0D06bFDaC659d70B4", "description": "irure", "gbacWrite": [ "nisi", "Duis Ut do quis" ], "version": 1 }, { "name": "test", "gbacRead": [ "dolore nostrud Duis pariatur proident", "minim irure", "consectetur aute", "reprehenderit mollit cupidatat exercitation" ], "members": [ { "path": "consectetur sit", "type": "component", "sourceCollection": "sed", "ref": "cillum nostrud laborum nisi" }, { "path": "Excepteur nisi esse Duis aliquip", "type": "component", "sourceCollection": "sed anim ullamco adipisicing est", "ref": "Ut" }, { "path": "dolore aliquip ut", "type": "component", "sourceCollection": "commodo eiusmod proident", "ref": "incididunt adipisicing ut reprehenderit minim" }, { "path": [ "ea", "aute veniam esse" ], "type": "folder" } ], "_id": "B98Fc9f5a2dd5AbafCd04cBF", "description": "sunt deserunt consectetur non", "gbacWrite": [ "ipsum mollit amet", "laborum deserunt consectetur ex" ], "version": 1 } ], "total": 66061922, "start": -65731330, "end": -72901635, "count": -49811615, "next": null, "previous": "aliqua irure ea et" }
{ "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" } ] } } }