Resume Execution
curl --request POST \
--url https://api.example.com/api/executions/{execution_uuid}/resume \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions/{execution_uuid}/resume"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/executions/{execution_uuid}/resume', 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
Resume Execution
POST
/
api
/
executions
/
{execution_uuid}
/
resume
Resume Execution
curl --request POST \
--url https://api.example.com/api/executions/{execution_uuid}/resume \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions/{execution_uuid}/resume"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/executions/{execution_uuid}/resume', 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
