Retrieve Connection Warnings
Retrieve all active warnings for a connection, grouped by destination table. Each warning includes a code, message, error details, and creation timestamp.
Request schema
Path parameters
The unique identifier of the connection. Retrieve it from the id field in the List All Connections response, or from the id field returned when you Create a Connection.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/connections/4107c213907114059a5544ad8fa66c52/warnings HTTP/1.1 Accept: application/json;version=2 Authorization: BasicHost: api.fivetran.com
Responses
200
Response status code
Response status text
Array of warnings grouped by destination table
The destination schema name. Omitted for warnings that are not scoped to a specific table.
The destination table name. Omitted for warnings that are not scoped to a specific table.
List of warnings for this table
A machine-readable identifier for the condition type. Use this value to programmatically detect and respond to specific connection conditions.
A human-readable label describing the condition. For example: Reconnect, Resync Table Warning.
Additional error details extracted from the warning
ISO 8601 timestamp when the warning was created
Pagination cursor for the next page of results
{ "code": "Success", "message": "Connection warnings retrieved successfully", "data": { "items": [ { "schema": "my_schema", "table": "my_table", "warnings": [ { "code": "string", "message": "string", "error_message": "Connection refused", "created_at": "2024-03-17T12:31:40.870504Z" } ] } ], "next_cursor": "next_cursor_value" } }