Summary
Updates an existing project
Description
Updates an existing project
Route
PATCH /automation-studio/projects/:projectId
Roles
admin
apiwrite
Parameters
Details Example Schema
Name
Type
Required
Description
projectId
string
yes
Project identifier, either an ObjectId or an IID
updateData
object
yes
Project update data
Copied to Clipboard
{
"name": "Arista EOS Utilities",
"description": "This project is used at Acme Corp as the foundation of some major parts of our business process.",
"thumbnailBackgroundColor": "#FFFFFF",
"members": [
{
"type": "group",
"reference": "4321abcdef694aa79dae47ad",
"role": "operator"
},
{
"type": "group",
"reference": "5cb7b531d06cceb89fd21b1c",
"role": "editor"
}
],
"version": {
"versionNumber": 674653,
"commitMessage": "ut labore",
"author": "sed mollit occaecat esse nisi",
"branchName": "culpa magna elit Ut irure"
},
"gitConfiguration": {
"connectionType": "GitHub",
"repositoryPath": "non",
"branchName": "adipisicing dolore proident",
"projectPath": "sunt"
}
}
Return
Details Example Schema
Name
Type
Description
response
object
Update result
Copied to Clipboard
{
"message": "ut ipsum aliquip sit",
"data": {
"_id": "5cb7b531d06cceb89fd21b1c",
"iid": 44815463,
"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": "62a1f3d2ebedfc54e6e0065c",
"role": "viewer",
"missing": true,
"username": "non sit dolor eu",
"name": "voluptate ex ullamco nisi",
"provenance": "in Excepteur"
}
],
"accessControl": {
"read": [
"exercitation non",
"sint pariatur do ipsum",
"ipsum nostrud",
"est et eiusmod sunt minim",
"labore voluptate"
],
"write": [
"dolor cillum commodo reprehenderit sed",
"aliqua ex",
"anim enim consequat elit consectetur"
],
"execute": [
"elit",
"magna reprehenderit tempor pariatur ipsum"
],
"manage": [
"quis ullamco sunt"
]
},
"componentIidIndex": 88600448,
"components": [
{
"iid": 15254505,
"type": "workflow",
"reference": "elit Excepteur sint cillum",
"folder": "/"
}
],
"created": "2019-11-25T22:51:39.201Z",
"createdBy": {
"_id": "Pronghorn",
"username": "amet in consectetur aliqua non",
"provenance": "aute",
"missing": true
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": {
"_id": "Pronghorn",
"username": null,
"provenance": "sint ea in mollit",
"missing": true
},
"versionHistory": [
{
"versionNumber": 44434568,
"commitMessage": "incididunt laboris in voluptate mollit",
"author": "irure non",
"branchName": "in esse"
},
{
"versionNumber": 20978426,
"commitMessage": "ipsum id mollit tempor laboris",
"author": "eu",
"branchName": "ullamco ad"
},
{
"versionNumber": -53233578,
"commitMessage": "in esse velit",
"author": "ullamco",
"branchName": "incididunt"
}
],
"gitConfiguration": {
"connectionType": "GitLab",
"repositoryPath": "adipisicing Excepteur",
"branchName": "Duis consectetur magna laboris veniam",
"projectPath": "ea et quis"
}
}
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"message": {
"type": "string"
},
"data": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "projects-http"
}
]
},
"metadata": {
"type": "object"
}
}
}