Delete Execution
curl --request DELETE \
--url https://api.example.com/api/executions/{execution_uuid} \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions/{execution_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/executions/{execution_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>"
}
]
}executions
Delete Execution
DELETE
/
api
/
executions
/
{execution_uuid}
Delete Execution
curl --request DELETE \
--url https://api.example.com/api/executions/{execution_uuid} \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions/{execution_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/executions/{execution_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
