Mark Execution Started
curl --request POST \
--url https://api.example.com/api/executions/{execution_uuid}/started \
--header 'Content-Type: application/json' \
--header 'X-Kinetic-Key: <api-key>' \
--data '
{
"startedAt": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.example.com/api/executions/{execution_uuid}/started"
payload = { "startedAt": "2023-11-07T05:31:56Z" }
headers = {
"X-Kinetic-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Kinetic-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({startedAt: '2023-11-07T05:31:56Z'})
};
fetch('https://api.example.com/api/executions/{execution_uuid}/started', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}executions
Mark Execution Started
POST
/
api
/
executions
/
{execution_uuid}
/
started
Mark Execution Started
curl --request POST \
--url https://api.example.com/api/executions/{execution_uuid}/started \
--header 'Content-Type: application/json' \
--header 'X-Kinetic-Key: <api-key>' \
--data '
{
"startedAt": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://api.example.com/api/executions/{execution_uuid}/started"
payload = { "startedAt": "2023-11-07T05:31:56Z" }
headers = {
"X-Kinetic-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Kinetic-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({startedAt: '2023-11-07T05:31:56Z'})
};
fetch('https://api.example.com/api/executions/{execution_uuid}/started', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
⌘I
