GET
/
api
/
entities
/
v1
/
{id}
GetEntity
curl --request GET \
  --url https://developer.synq.io/api/entities/v1/{id} \
  --header 'Authorization: Bearer <token>'
{
  "entity": {
    "workspace": "<string>",
    "id": {
      "airflowDag": {
        "integrationId": "<string>",
        "dagId": "<string>"
      }
    },
    "typeId": 123,
    "name": "<string>",
    "description": "<string>",
    "createdAt": "1s",
    "updatedAt": "1s",
    "deletedAt": "1s",
    "synqPath": "<string>",
    "synqCatalogUrl": "<string>",
    "annotations": [
      {
        "name": "<string>",
        "values": [
          "<string>"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
object
required

Identifier of the entity to get.

Response

200
application/json

Success

GetEntityResponse is the response message for the GetEntity method.