Delete Workflow
curl --request DELETE \
--url https://api.example.com/api/workflows/{workflow_uuid} \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/workflows/{workflow_uuid}"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/workflows/{workflow_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"is_error": false,
"error_message": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}workflows
Delete Workflow
DELETE
/
api
/
workflows
/
{workflow_uuid}
Delete Workflow
curl --request DELETE \
--url https://api.example.com/api/workflows/{workflow_uuid} \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/workflows/{workflow_uuid}"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/workflows/{workflow_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"is_error": false,
"error_message": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
⌘I
