curl --request POST \
--url https://developer.synq.io/api/executions/v1/log-entry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"logEntry": {
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"message": "<string>",
"createdAt": "1s",
"startedAt": "1s",
"finishedAt": "1s",
"annotations": [
{
"name": "<string>",
"values": [
"<string>"
]
}
]
}
}'
{}
LogEntry is a log message for the custom entity
curl --request POST \
--url https://developer.synq.io/api/executions/v1/log-entry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"logEntry": {
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"message": "<string>",
"createdAt": "1s",
"startedAt": "1s",
"finishedAt": "1s",
"annotations": [
{
"name": "<string>",
"values": [
"<string>"
]
}
]
}
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.