Entities
Delete an entity
DELETE
/
project
/
{projectId}
/
entities
/
{entityId}
Delete an entity
curl --request DELETE \
--url https://backend.branch.flowengineering.com/project/{projectId}/entities/{entityId} \
--header 'X-API-Key: <api-key>' \
--header 'customer: <customer>'import requests
url = "https://backend.branch.flowengineering.com/project/{projectId}/entities/{entityId}"
headers = {
"customer": "<customer>",
"X-API-Key": "<api-key>"
}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {customer: '<customer>', 'X-API-Key': '<api-key>'}};
fetch('https://backend.branch.flowengineering.com/project/{projectId}/entities/{entityId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));⌘I
Delete an entity
curl --request DELETE \
--url https://backend.branch.flowengineering.com/project/{projectId}/entities/{entityId} \
--header 'X-API-Key: <api-key>' \
--header 'customer: <customer>'import requests
url = "https://backend.branch.flowengineering.com/project/{projectId}/entities/{entityId}"
headers = {
"customer": "<customer>",
"X-API-Key": "<api-key>"
}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {customer: '<customer>', 'X-API-Key': '<api-key>'}};
fetch('https://backend.branch.flowengineering.com/project/{projectId}/entities/{entityId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));