Summary
Search projects
Description
Search projects
Route
GET /automation-studio/projects
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
queryParameters |
object |
yes |
Query parameters configuring the search operation, provided by query parameters to the associated HTTP endpoint |
Copied to Clipboard
{
"queryParameters": {
"equals": {
"_id": "voluptate officia ut",
"iid": -13791939.950564876,
"name": "ipsum et mollit occaecat voluptate",
"createdBy": "dolore",
"lastUpdatedBy": "adipisicing commodo in pariatur ea"
},
"in": {
"_id": [],
"iid": [],
"name": "tempor ea ad labore",
"createdBy": "elit voluptate pariatur occaecat fugiat",
"lastUpdatedBy": []
},
"starts-with": {
"name": "esse magna"
},
"contains": {
"name": "labore laboris cillum Duis",
"description": "aliqua Duis proident sint",
"name,description": "ipsum occaecat",
"description,name": "voluptate exercitation"
},
"sort": "iid",
"order": "asc",
"skip": "do commodo",
"limit": "in culpa ut elit Ut"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"queryParameters": {
"title": "queryParameters",
"$ref": "projects-search-parameters"
}
},
"required": [
"queryParameters"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Projects |
Copied to Clipboard
{
"message": "ut ex sed anim",
"data": [
{
"_id": "62a1f3d2ebedfc54e6e0065c",
"iid": 49998590,
"name": "Firewall Service Provisioning",
"description": "This project is comprised of two major elements: 1) Workflows handling customer self-service, and 2) Workflows used by operations teams to provision service internally",
"members": [
{
"type": "group",
"reference": "4321abcdef694aa79dae47ad",
"role": "operator",
"missing": true,
"username": "et Lorem nulla ut est",
"name": "tempor cupidatat laborum ut",
"provenance": "dolor Lorem magna Duis proident"
},
{
"type": "account",
"reference": "62a1f3d2ebedfc54e6e0065c",
"role": "owner",
"missing": true,
"username": "proident irure mollit ea",
"name": "ad in commodo",
"provenance": "ea ut"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "operator",
"missing": true,
"username": "reprehenderit tempor nisi",
"name": "in",
"provenance": "ex"
},
{
"type": "account",
"reference": "62a1f3d2ebedfc54e6e0065c",
"role": "operator",
"missing": false,
"username": "non tempor",
"name": "nisi ipsum laboris consequat exercitation",
"provenance": "sunt aliquip minim in id"
}
],
"accessControl": {
"read": [
"mollit adipisicing pariatur non",
"incididunt veniam consectetur",
"dolore"
],
"write": [
"qui aliquip sit cupidatat",
"in",
"esse aliqua",
"cillum ut",
"aute nostrud Ut velit qui"
],
"execute": [
"in esse ad",
"Lorem"
],
"manage": [
"ullamco",
"adipisicing exercitation"
]
},
"componentIidIndex": 71897771,
"components": [
{
"iid": 38068243,
"type": "mopAnalyticTemplate",
"reference": "sit consectetur anim est laboris",
"folder": "/"
},
{
"iid": 96018277,
"type": "workflow",
"reference": "nulla mollit",
"folder": "/"
}
],
"created": "2019-11-25T22:51:39.201Z",
"createdBy": {
"_id": "5cb7b531d06cceb89fd21b1c",
"username": null,
"provenance": "ipsum et eiusmod laborum in",
"missing": true
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": {
"_id": "5cb7b531d06cceb89fd21b1c",
"username": "reprehenderit pariatur anim",
"provenance": "officia pariatur quis",
"missing": false
},
"versionHistory": [
{
"versionNumber": -20178557,
"commitMessage": "in labore",
"author": "occaecat Lorem eiusmod ipsum",
"branchName": "deserunt laborum occaecat"
},
{
"versionNumber": 1702751,
"commitMessage": "laboris cillum",
"author": "in adipisicing dolor voluptate est",
"branchName": "ut"
},
{
"versionNumber": 88987718,
"commitMessage": "aliquip reprehenderit id",
"author": "veniam anim",
"branchName": "adipisicing esse culpa"
}
],
"gitConfiguration": {
"connectionType": "GitLab",
"repositoryPath": "ad ut laborum consectetur",
"branchName": "nulla et",
"projectPath": "aute"
}
}
],
"metadata": {
"skip": 67181434.7192063,
"limit": 68318989.0704872,
"total": -45153892.04145972,
"previousPageSkip": null,
"nextPageSkip": -84736932.75034991
}
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"message": {
"type": "string"
},
"data": {
"type": "array",
"items": {
"$ref": "projects-http"
}
},
"metadata": {
"type": "object",
"properties": {
"skip": {
"type": "number"
},
"limit": {
"type": "number"
},
"total": {
"type": "number"
},
"previousPageSkip": {
"oneOf": [
{
"type": "null"
},
{
"type": "number"
}
]
},
"nextPageSkip": {
"oneOf": [
{
"type": "null"
},
{
"type": "number"
}
]
}
}
}
}
}