Summary
Remove a component from a project
Description
Remove a component from a project
Route
DELETE /automation-studio/projects/:projectId/components/:componentId
Roles
admin
apiwrite
designer
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
projectId |
string |
yes |
Project identifier |
componentId |
number |
yes |
Component identifier |
options |
object |
yes |
Options designating removal mode |
Copied to Clipboard
{
"options": {
"mode": "move"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"options": {
"title": "options",
"type": "object",
"description": "Options designating removal mode",
"properties": {
"mode": {
"type": "string",
"enum": [
"delete",
"move"
]
}
}
}
},
"required": [
"options"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Response object |
Copied to Clipboard
{
"message": "ipsum nulla culpa",
"data": {
"_id": "5cb7b531d06cceb89fd21b1c",
"iid": 62296651,
"name": "Arista EOS Utilities",
"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": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "viewer",
"missing": false,
"username": "pariatur sint in",
"name": "culpa officia mollit",
"provenance": "proident Ut et eu"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "editor",
"missing": false,
"username": "consequat non dolor voluptate velit",
"name": "do commodo sit est",
"provenance": "enim sed cupidatat"
},
{
"type": "account",
"reference": "4321abcdef694aa79dae47ad",
"role": "editor",
"missing": false,
"username": "Ut Excepteur anim nulla velit",
"name": "dolor",
"provenance": "eu aliqua laborum qui pariatur"
}
],
"accessControl": {
"read": [
"sint adipisicing ea",
"Ut"
],
"write": [
"magna voluptate labore",
"Excepteur consequat nulla non"
],
"execute": [
"do amet reprehenderit",
"aliquip proident mollit aliqua",
"in nulla",
"do nulla in non"
],
"manage": [
"cupidatat aliqua amet",
"sunt consequat eiusmod ea tempor",
"tempor laborum",
"do tempor officia",
"sunt amet proident"
]
},
"componentIidIndex": 76258960,
"components": [
{
"iid": 57750414,
"type": "jsonForm",
"reference": "Excepteur cupidatat adipisicing occaecat",
"folder": "/"
},
{
"iid": 26842994,
"type": "workflow",
"reference": "dolore reprehenderit id",
"folder": "/"
},
{
"iid": 46674544,
"type": "jsonForm",
"reference": "in",
"folder": "/"
},
{
"iid": 61212083,
"type": "mopCommandTemplate",
"reference": "magna in Excepteur aliquip",
"folder": "/"
}
],
"created": "2019-11-25T22:51:39.201Z",
"createdBy": {
"_id": "62a1f3d2ebedfc54e6e0065c",
"username": null,
"provenance": "tempor ipsum et enim consequat",
"missing": false
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": {
"_id": "62a1f3d2ebedfc54e6e0065c",
"username": "Excepteur adipisicing amet",
"provenance": "enim",
"missing": true
},
"versionHistory": [
{
"versionNumber": 29946255,
"commitMessage": "reprehenderit Ut",
"author": "officia",
"branchName": "ut Duis aliqua laborum"
}
],
"gitConfiguration": {
"connectionType": "GitLab",
"repositoryPath": "nostrud dolor dolore",
"branchName": "id consectetur nulla eiusmod ut",
"projectPath": "cupidatat in ea mollit"
}
}
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Message denoting the status of the delete operation"
},
"data": {
"$ref": "projects-http"
},
"metadata": {
"type": "object"
}
}
}