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": "dolor pariatur",
"iid": 69911802.16017759,
"name": "Excepteur ad labore",
"createdBy": "nisi occaecat proident anim consectetur",
"lastUpdatedBy": "sint"
},
"in": {
"_id": "quis",
"iid": [],
"name": [],
"createdBy": "laborum pariatur labore id esse",
"lastUpdatedBy": "est"
},
"starts-with": {
"name": "ut nisi Duis Excepteur reprehenderit"
},
"contains": {
"name": "consequat consectetur",
"description": "ut cupidatat pariatur Ut veniam",
"name,description": "ex id adipisicing",
"description,name": "pariatur id aute"
},
"sort": "created",
"order": "desc",
"skip": "consectetur pariatur aute",
"limit": "veniam dolor irure"
}
}
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": "proident consequat labore sunt nisi",
"data": [
{
"_id": "62a1f3d2ebedfc54e6e0065c",
"iid": 27545713,
"name": "Firewall Service Provisioning",
"description": "This project is used at Acme Corp as the foundation of some major parts of our business process.",
"members": [
{
"type": "group",
"reference": "5cb7b531d06cceb89fd21b1c",
"role": "editor",
"missing": false,
"username": "tempor nulla Ut velit",
"name": "Excepteur reprehenderit elit amet eu",
"provenance": "sit incididunt"
}
],
"accessControl": {
"read": [
"reprehenderit elit officia amet",
"aliquip aliqua"
],
"write": [
"ad"
],
"execute": [
"sed ut consequat adipisicing ullamco"
],
"manage": [
"elit",
"cillum exercitation"
]
},
"componentIidIndex": 22087361,
"components": [
{
"iid": 47823223,
"type": "mopAnalyticTemplate",
"reference": "exercitation enim ullamco ea",
"folder": "/"
},
{
"iid": 88535378,
"type": "mopAnalyticTemplate",
"reference": "et",
"folder": "/"
},
{
"iid": 69569914,
"type": "transformation",
"reference": "reprehenderit enim quis",
"folder": "/"
},
{
"iid": 10246338,
"type": "transformation",
"reference": "ea incididunt",
"folder": "/"
}
],
"created": "2019-11-25T22:51:39.201Z",
"createdBy": {
"_id": "Pronghorn",
"username": "dolor culpa enim",
"provenance": "id dolore",
"missing": false
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": {
"_id": "5cb7b531d06cceb89fd21b1c",
"username": "nostrud",
"provenance": "voluptate ut ea officia",
"missing": true
},
"versionHistory": [
{
"versionNumber": 28576200,
"commitMessage": "sit laborum labore anim",
"author": "dolore deserunt",
"branchName": "est anim adipisicing"
},
{
"versionNumber": -98978691,
"commitMessage": "et culpa",
"author": "Lorem est mollit elit",
"branchName": "irure in"
},
{
"versionNumber": 16410721,
"commitMessage": "dolore ea tempor est",
"author": "in pariatur",
"branchName": "commodo incididunt sint deserunt nisi"
},
{
"versionNumber": -77834170,
"commitMessage": "dolore voluptate amet cillum culpa",
"author": "Duis",
"branchName": "sed quis nulla veniam"
}
],
"gitConfiguration": {
"connectionType": "GitLab",
"repositoryPath": "fugiat eiusmod magna",
"branchName": "anim",
"projectPath": "aliquip sint do pariatur"
}
}
],
"metadata": {
"skip": 78020037.50995299,
"limit": 63987047.09544164,
"total": -29084654.68697439,
"previousPageSkip": -81363864.22875841,
"nextPageSkip": 15609500.865653604
}
}
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"
}
]
}
}
}
}
}