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>"
}
},
"createdAt": "2023-11-07T05:31:56Z",
"message": "<string>",
"startedAt": "2023-11-07T05:31:56Z",
"finishedAt": "2023-11-07T05:31:56Z",
"annotations": [
{
"name": "<string>",
"values": [
"<string>"
]
}
]
}
}
'