curl --request GET \
--url https://developer.synq.io/api/issues/v2 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"entitiesQuery": {
"parts": [
{
"identifierList": {
"identifiers": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}
}
],
"operand": "QUERY_OPERAND_UNSPECIFIED"
},
"time": {
"field": "FIELD_UPDATED_AT",
"from": "1s",
"to": "1s"
},
"sort": {
"sortBy": "FIELD_UPDATED_AT",
"order": "ORDER_ASC"
},
"pagination": {
"cursor": "<string>",
"pageSize": 123
},
"lifecycleState": "LIFECYCLE_STATE_UNSPECIFIED"
}'
{
"pageInfo": {
"totalCount": 123,
"count": 123,
"lastId": "<string>"
},
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
curl --request GET \
--url https://developer.synq.io/api/issues/v2 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"entitiesQuery": {
"parts": [
{
"identifierList": {
"identifiers": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}
}
],
"operand": "QUERY_OPERAND_UNSPECIFIED"
},
"time": {
"field": "FIELD_UPDATED_AT",
"from": "1s",
"to": "1s"
},
"sort": {
"sortBy": "FIELD_UPDATED_AT",
"order": "ORDER_ASC"
},
"pagination": {
"cursor": "<string>",
"pageSize": 123
},
"lifecycleState": "LIFECYCLE_STATE_UNSPECIFIED"
}'
{
"pageInfo": {
"totalCount": 123,
"count": 123,
"lastId": "<string>"
},
"issueIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.