Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Success
curl --request GET \
--url https://developer.synq.io/api/entities/custom/v1 \
--header 'Authorization: Bearer <token>'
{
"entities": [
{
"workspace": "<string>",
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"typeId": 500,
"entityType": "ENTITY_TYPE_UNSPECIFIED",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-01-15T01:30:15.01Z",
"updatedAt": "2023-01-15T01:30:15.01Z",
"deletedAt": "2023-01-15T01:30:15.01Z",
"synqPath": "<string>",
"synqCatalogUrl": "<string>",
"ids": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
],
"synqPaths": [
"<string>"
],
"annotations": [
{
"name": "<string>",
"values": [
"<string>"
]
}
]
}
]
}
List all entities.
curl --request GET \
--url https://developer.synq.io/api/entities/custom/v1 \
--header 'Authorization: Bearer <token>'
{
"entities": [
{
"workspace": "<string>",
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"typeId": 500,
"entityType": "ENTITY_TYPE_UNSPECIFIED",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-01-15T01:30:15.01Z",
"updatedAt": "2023-01-15T01:30:15.01Z",
"deletedAt": "2023-01-15T01:30:15.01Z",
"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.
Success
Show child attributes