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": "aliquip",
"iid": 43073121.12703204,
"name": "magna aliqua",
"createdBy": "aliqua sit commodo ullamco do",
"lastUpdatedBy": "minim sint laboris in"
},
"in": {
"_id": [],
"iid": [],
"name": "nostrud laboris ipsum ad",
"createdBy": [],
"lastUpdatedBy": []
},
"starts-with": {
"name": "in"
},
"contains": {
"name": "ullamco sint dolore dolore",
"description": "nulla ea velit",
"name,description": "aute",
"description,name": "quis adipisicing sit do aliqua"
},
"sort": "lastUpdatedBy",
"order": "desc",
"skip": -82616045.58419342,
"limit": "anim pariatur"
}
}
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": "tempor sit",
"data": [
{
"_id": "4321abcdef694aa79dae47ad",
"iid": 83168193,
"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": "4321abcdef694aa79dae47ad",
"role": "viewer",
"missing": true,
"username": "Duis fugiat",
"name": "quis sunt",
"provenance": "minim irure"
},
{
"type": "account",
"reference": "62a1f3d2ebedfc54e6e0065c",
"role": "operator",
"missing": true,
"username": "est ex",
"name": "et nostrud",
"provenance": "aliqua proident"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "viewer",
"missing": false,
"username": "ad dolore exercitation sunt nostrud",
"name": "veniam enim qui sit",
"provenance": "dolore adipisicing irure ullamco"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "viewer",
"missing": false,
"username": "ea irure voluptate",
"name": "officia ex velit voluptate nisi",
"provenance": "ullamco"
}
],
"accessControl": {
"read": [
"proident do quis Ut commodo",
"in",
"non",
"Excepteur ipsum ut non",
"laborum nostrud veniam Duis nisi"
],
"write": [
"ipsum anim irure non laboris",
"nostrud enim"
],
"execute": [
"consectetur nisi culpa non",
"irure est deserunt",
"enim nisi consectetur in",
"occaecat adipisicing in dolore et",
"Lorem nulla amet Duis"
],
"manage": [
"qui Excepteur quis cillum non",
"Lorem dolore"
]
},
"componentIidIndex": 72294038,
"components": [
{
"iid": 91650398,
"type": "transformation",
"reference": "incididunt aute",
"folder": "/"
},
{
"iid": 74536334,
"type": "mopAnalyticTemplate",
"reference": "in amet est",
"folder": "/"
}
],
"created": "2019-11-25T22:51:39.201Z",
"createdBy": {
"_id": "Pronghorn",
"username": "laboris officia pariatur veniam",
"provenance": "nisi",
"missing": true
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": {
"_id": "4321abcdef694aa79dae47ad",
"username": null,
"provenance": "est adipisicing",
"missing": true
},
"versionHistory": [
{
"versionNumber": 57818181,
"commitMessage": "laborum dolore proident",
"author": "occaecat magna mollit officia proident",
"branchName": "occaecat proident"
},
{
"versionNumber": 33300480,
"commitMessage": "laboris esse",
"author": "ex",
"branchName": "exercitation magna non ea"
}
],
"gitConfiguration": {
"connectionType": "GitHub",
"repositoryPath": "sit cupidatat qui sint",
"branchName": "tempor dolore nostrud irure elit",
"projectPath": "cillum"
}
}
],
"metadata": {
"skip": -77544076.10961454,
"limit": 1799762.765347749,
"total": -79164516.52092151,
"previousPageSkip": 77826459.65519857,
"nextPageSkip": 82300611.56756583
}
}
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"
}
]
}
}
}
}
}