POST
/
api
/
datawarehouse
/
v1
/
connection
/
{connectionId}
/
upload
/
{uploadId}
/
object-information
curl --request POST \
  --url https://developer.synq.io/api/datawarehouse/v1/connection/{connectionId}/upload/{uploadId}/object-information \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "connectionId": "<string>",
  "uploadId": "<string>",
  "stateAt": "2023-11-07T05:31:56Z",
  "objects": [
    {
      "fqn": {
        "instanceName": "<string>",
        "databaseName": "<string>",
        "schemaName": "<string>",
        "objectName": "<string>"
      },
      "objectNativeType": "<string>",
      "isView": true,
      "isTable": true,
      "tags": [
        {
          "tagName": "<string>",
          "tagValue": "<string>"
        }
      ],
      "description": "<string>"
    }
  ]
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

connectionId
string
required
uploadId
string
required

Body

application/json

Response

200
application/json

OK

The response is of type object.