Summary
Updates an existing project
Description
Updates an existing project
Route
PATCH /automation-studio/projects/:projectId
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
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": "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",
"thumbnailBackgroundColor": "#FFFFFF",
"members": [
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "editor"
},
{
"type": "account",
"reference": "5cb7b531d06cceb89fd21b1c",
"role": "owner"
},
{
"type": "group",
"reference": "5cb7b531d06cceb89fd21b1c",
"role": "operator"
},
{
"type": "group",
"reference": "4321abcdef694aa79dae47ad",
"role": "operator"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "editor"
}
],
"version": {
"versionNumber": -43592778,
"commitMessage": "dolore",
"author": "minim dolore adipisicing anim",
"branchName": "pariatur"
},
"gitConfiguration": {
"connectionType": "GitHub",
"repositoryPath": "in velit culpa reprehenderit",
"branchName": "consequat reprehenderit",
"projectPath": "occaecat ad Ut"
}
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Update result |
Copied to Clipboard
{
"message": "Lorem",
"data": null
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"message": {
"type": "string"
},
"data": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "projects-http"
}
]
},
"metadata": {
"type": "object"
}
}
}