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": "cupidatat",
"iid": 34154505.485812694,
"name": "nulla exercitation ipsum",
"createdBy": "anim mollit fugiat nulla laboris",
"lastUpdatedBy": "incididunt nulla ad"
},
"in": {
"_id": [],
"iid": "ipsum",
"name": [],
"createdBy": [],
"lastUpdatedBy": []
},
"starts-with": {
"name": "sed elit occaecat"
},
"contains": {
"name": "Duis",
"description": "ad proident",
"name,description": "irure mollit qui",
"description,name": "qui velit ut mollit"
},
"sort": "lastUpdatedBy",
"order": "desc",
"skip": 16414441.868551984,
"limit": -26129757.87134175
}
}
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": "aliquip sunt Excepteur commodo",
"data": [
{
"_id": "62a1f3d2ebedfc54e6e0065c",
"iid": 80942080,
"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": "account",
"reference": "5cb7b531d06cceb89fd21b1c",
"role": "viewer",
"missing": true,
"username": "aute",
"name": "ipsum",
"provenance": "nulla"
},
{
"type": "account",
"reference": "62a1f3d2ebedfc54e6e0065c",
"role": "editor",
"missing": false,
"username": "Ut",
"name": "sint",
"provenance": "ullamco aliqua officia"
},
{
"type": "group",
"reference": "5cb7b531d06cceb89fd21b1c",
"role": "operator",
"missing": true,
"username": "mollit",
"name": "mollit in ut",
"provenance": "nostrud tempor qui"
}
],
"accessControl": {
"read": [
"qui ullamco"
],
"write": [
"tempor in elit"
],
"execute": [
"dolore aute magna veniam",
"qui mollit",
"nostrud ex",
"ullamco nulla"
],
"manage": [
"Lorem aliqua aliquip labore",
"adipisicing"
]
},
"componentIidIndex": 21768664,
"components": [
{
"iid": 53344912,
"type": "mopCommandTemplate",
"reference": "sint in aute cupidatat",
"folder": "/"
},
{
"iid": 83637505,
"type": "workflow",
"reference": "dolor sint et nostrud elit",
"folder": "/"
},
{
"iid": 14609953,
"type": "transformation",
"reference": "ipsum",
"folder": "/"
},
{
"iid": 11180976,
"type": "workflow",
"reference": "ea fugiat",
"folder": "/"
}
],
"created": "2019-11-25T22:51:39.201Z",
"createdBy": {
"_id": "4321abcdef694aa79dae47ad",
"username": "tempor id aliquip",
"provenance": "sit",
"missing": true
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": {
"_id": "Pronghorn",
"username": "exercitation cupidatat ad ipsum mollit",
"provenance": "in dolor cupidatat",
"missing": false
},
"versionHistory": [
{
"versionNumber": -45635418,
"commitMessage": "pariatur reprehenderit cupidatat",
"author": "labore sunt esse occaecat",
"branchName": "qui"
},
{
"versionNumber": 28433013,
"commitMessage": "enim laborum ut qui adipisicing",
"author": "minim",
"branchName": "aliquip ut sunt velit ut"
},
{
"versionNumber": 55140774,
"commitMessage": "deserunt aute",
"author": "irure nostrud non adipisicing mollit",
"branchName": "nulla exercitation sunt"
},
{
"versionNumber": -51063270,
"commitMessage": "dolor",
"author": "fugiat reprehenderit",
"branchName": "ea est minim Excepteur ut"
}
],
"gitConfiguration": {
"connectionType": "GitHub",
"repositoryPath": "veniam sunt sit eiusmod",
"branchName": "irure officia qui",
"projectPath": "velit sit ex"
}
}
],
"metadata": {
"skip": 2942282.76369974,
"limit": -65492634.11195567,
"total": 96432028.65001875,
"previousPageSkip": null,
"nextPageSkip": -21670198.111695573
}
}
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"
}
]
}
}
}
}
}