curl --request GET \
--url https://developer.synq.io/api/issues/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"from": "1s",
"to": "1s",
"limit": {
"max": 123,
"afterId": "<string>"
},
"entities": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}'
{
"issues": [
{
"monitor": {
"monitor": {
"monitoredId": {},
"monitorId": "<string>",
"segment": "<string>",
"integrationId": "<string>"
},
"metricId": "<string>",
"metricVersion": 123,
"segmentValue": "<string>"
},
"id": "<string>",
"name": "<string>",
"message": "<string>",
"currentMessage": "<string>",
"lastErrorMessage": "<string>",
"severity": "SEVERITY_UNSPECIFIED",
"triggerEntity": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"affectedEntities": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"state": "STATE_UNSPECIFIED",
"startedAt": "1s",
"updatedAt": "1s",
"endedAt": "1s",
"latestStatus": "STATUS_UNSPECIFIED",
"latestStatusActor": {
"email": {
"userEmail": "jsmith@example.com"
},
"name": "<string>"
},
"comments": [
{
"id": "<string>",
"message": "<string>",
"createdAt": "1s",
"actor": {
"email": {
"userEmail": "jsmith@example.com"
},
"name": "<string>"
}
}
],
"lifecycleState": "LIFECYCLE_STATE_UNSPECIFIED"
}
]
}
curl --request GET \
--url https://developer.synq.io/api/issues/v1 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"from": "1s",
"to": "1s",
"limit": {
"max": 123,
"afterId": "<string>"
},
"entities": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}'
{
"issues": [
{
"monitor": {
"monitor": {
"monitoredId": {},
"monitorId": "<string>",
"segment": "<string>",
"integrationId": "<string>"
},
"metricId": "<string>",
"metricVersion": 123,
"segmentValue": "<string>"
},
"id": "<string>",
"name": "<string>",
"message": "<string>",
"currentMessage": "<string>",
"lastErrorMessage": "<string>",
"severity": "SEVERITY_UNSPECIFIED",
"triggerEntity": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"affectedEntities": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"state": "STATE_UNSPECIFIED",
"startedAt": "1s",
"updatedAt": "1s",
"endedAt": "1s",
"latestStatus": "STATUS_UNSPECIFIED",
"latestStatusActor": {
"email": {
"userEmail": "jsmith@example.com"
},
"name": "<string>"
},
"comments": [
{
"id": "<string>",
"message": "<string>",
"createdAt": "1s",
"actor": {
"email": {
"userEmail": "jsmith@example.com"
},
"name": "<string>"
}
}
],
"lifecycleState": "LIFECYCLE_STATE_UNSPECIFIED"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.