Skip to content

Guess DWH Integration configuration

Request

Perform Guess operation for complete DWH Integration configuration by providing basic_configs.

Security
apiKey
Bodyapplication/jsonrequired
basic_configsobject(BasicConfigs)
property name*anyadditional property
curl -i -X POST \
  https://dwh-integration-api.treasuredata.com/v1/guess \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "basic_configs": {
      "td_authentication_id": 11,
      "type": "snowflake",
      "warehouse": "test_wh",
      "db": "database",
      "schema": "test"
    }
  }'

Responses

Guess Successful

Bodyapplication/json
basic_configsobject(BasicConfigs)
advanced_configsArray of objects(AdvancedConfigs)

The DWH Integration advanced configs. The configs contain array of of table configs which combine with the basic configs will be used to create Connector Bulkload Session.

Response
{ "basic_configs": { "type": "snowflake", "td_authentication_id": "string", "role": "string", "warehouse": "string", "db": "string", "schema": "string", "incremental": false }, "advanced_configs": [ {} ] }