Get Execution Logs
curl --request GET \
--url https://api.example.com/api/executions/{execution_uuid}/logs \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions/{execution_uuid}/logs"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/executions/{execution_uuid}/logs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"logs": "<string>",
"url": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}executions
Get Execution Logs
GET
/
api
/
executions
/
{execution_uuid}
/
logs
Get Execution Logs
curl --request GET \
--url https://api.example.com/api/executions/{execution_uuid}/logs \
--header 'X-Kinetic-Key: <api-key>'import requests
url = "https://api.example.com/api/executions/{execution_uuid}/logs"
headers = {"X-Kinetic-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Kinetic-Key': '<api-key>'}};
fetch('https://api.example.com/api/executions/{execution_uuid}/logs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"logs": "<string>",
"url": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
