curl --request POST \
--url https://developer.synq.io/api/entities/v1/by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}'
{
"entities": [
{
"workspace": "<string>",
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"typeId": 123,
"name": "<string>",
"description": "<string>",
"createdAt": "1s",
"updatedAt": "1s",
"deletedAt": "1s",
"synqPath": "<string>",
"synqCatalogUrl": "<string>",
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"synqPaths": [
"<string>"
],
"annotations": [
{
"name": "<string>",
"values": [
"<string>"
]
}
]
}
]
}
Get multiple entities by their identifiers.
curl --request POST \
--url https://developer.synq.io/api/entities/v1/by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}'
{
"entities": [
{
"workspace": "<string>",
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"typeId": 123,
"name": "<string>",
"description": "<string>",
"createdAt": "1s",
"updatedAt": "1s",
"deletedAt": "1s",
"synqPath": "<string>",
"synqCatalogUrl": "<string>",
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"synqPaths": [
"<string>"
],
"annotations": [
{
"name": "<string>",
"values": [
"<string>"
]
}
]
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
BatchGetEntitiesRequest is the request message for the BatchGetEntities method.
Success
BatchGetEntitiesResponse is the response message for the BatchGetEntities method.