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 used at Acme Corp as the foundation of some major parts of our business process.",
"thumbnailBackgroundColor": "#FFFFFF",
"members": [
{
"type": "group",
"reference": "4321abcdef694aa79dae47ad",
"role": "editor"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "owner"
},
{
"type": "account",
"reference": "62a1f3d2ebedfc54e6e0065c",
"role": "operator"
}
],
"version": {
"versionNumber": -27318908,
"commitMessage": "dolore ipsum sint",
"author": "dolore tempor Duis",
"branchName": "officia reprehenderit cupidatat"
},
"gitConfiguration": {
"connectionType": "GitLab",
"repositoryPath": "deserunt esse in",
"branchName": "officia sed tempor",
"projectPath": "aliqua velit est mollit"
}
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Update result |
Copied to Clipboard
{
"message": "eu id nostrud cillum",
"data": null
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"message": {
"type": "string"
},
"data": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "projects-http"
}
]
},
"metadata": {
"type": "object"
}
}
}