Run Destination Setup Tests
Runs the setup tests for an existing destination within your Fivetran account.
Request schema
Path parameters
The unique identifier for the destination within the Fivetran system.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
POST /v1/destinations/destinationId/test HTTP/1.1 Accept: application/json;version=2 Authorization: BasicContent-Type: application/json Host: api.fivetran.com Content-Length: 62 { "trust_certificates": true, "trust_fingerprints": true }
Responses
200
Response status code
Response status text
The unique identifier for the destination within the Fivetran system
The name for the destination type within the Fivetran system.
Data processing location. This is where Fivetran will operate and run computation on data.
Destination setup status
Shift my UTC offset with daylight savings time (US Only)
The unique identifier for the group within the Fivetran system.
Determines the time zone for the Fivetran sync schedule.
Setup tests results for this destination
Setup test title
Setup test status
Setup test message
Setup test details
(Deprecated) The unique identifier for the hybrid deployment agent within the Fivetran system
The unique identifier for the self-served private link that is used by the connection
The unique identifier for the proxy agent within the Fivetran system
The unique identifier for the hybrid deployment agent within the Fivetran system
{ "code": "Success", "message": "Setup tests have been completed", "data": { "id": "destination_id", "service": "aiven_kafka_wh", "region": "GCP_US_EAST4", "networking_method": "Directly", "setup_status": "CONNECTED", "daylight_saving_time_enabled": true, "group_id": "group_id", "time_zone_offset": "+3", "setup_tests": [ { "title": "Test Title", "status": "FAILED", "message": "Test Message", "details": "..." } ], "local_processing_agent_id": "local_processing_agent_id", "private_link_id": "private_link_id", "proxy_agent_id": "proxy_agent_id", "hybrid_deployment_agent_id": "hybrid_deployment_agent_id", "config": { "schema_registry": "AIVEN_KARAPACE | CONFLUENT_CLOUD", "schema_registry_api_secret": "string", "data_format": "JSON | AVRO", "replication_factor": 0, "sasl_plain_secret": "string", "schema_registry_api_key": "string", "bootstrap_servers": [ "string" ], "connection_method": "privatelink | direct", "schema_registry_url": "string", "enable_single_topic": true, "sasl_plain_key": "string", "sasl_mechanism": "SCRAM_SHA_512 | SCRAM_SHA_256", "security_protocol": "SASL | SASL_PLAINTEXT", "num_of_partitions": 0 } } }