API Documents/DWH Integration API//
- Guess DWH Integration configuration
List all DWH Integrations for the current user.
Create a new DWH Integration
Get a DWH Integration.
Update a DWH Integration.
Delete a DWH Integration.
List all Bulkload sessions of the current DWH Integration.
Get a DWH Integration configuration.
Trigger run the DWH Integration workflow.
List all DWH Workflow session attempts.
Guess DWH Integration con...
Perform Guess operation for complete DWH Integration configuration by providing basic_configs.
Security
apiKey
- Production AWS serverhttps://dwh-integration-api.treasuredata.com/v1/guess
- Production EU01 serverhttps://dwh-integration-api.eu01.treasuredata.com/v1/guess
- Production AP02 serverhttps://dwh-integration-api.ap02.treasuredata.com/v1/guess
- Production AP03 serverhttps://dwh-integration-api.ap03.treasuredata.com/v1/guess
- Production AWS Tokyo serverhttps://dwh-integration-api.treasuredata.co.jp/v1/guess
- snowflake
- databricks
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"
}
}'Response
{ "basic_configs": { "type": "snowflake", "td_authentication_id": "string", "role": "string", "warehouse": "string", "db": "string", "schema": "string", "incremental": false }, "advanced_configs": [ { … } ] }