List All Log Services within Account
Returns a list of all accessible logging services within your Fivetran account.
Request schema
Query parameters
Paging cursor, read more about pagination
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /v1/external-logging?cursor=cursor_value&limit=100 HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Response status code
Response status text
The collection of returned items
The unique identifier for the log service within the Fivetran system.
The name of the log service type within the Fivetran system. We support the following log services: azure_monitor_log, cloudwatch, datadog_log, dynatrace, grafana_loki, splunkLog, new_relic_log, stackdriver (Google Cloud Logging).
The boolean value specifying whether the log service is enabled.
Setup status of the log service. Present when a setup status exists for the log service.
List of alerts describing issues with the log service configuration.
Alert code identifying the type of issue.
Human-readable description of the issue.
Additional context or details for the alert.
Current setup state of the log service. Possible values: connected — log service is reachable and forwarding events; broken — configuration errors prevent log delivery; incomplete — setup has not been completed and log delivery is paused. Example: connected.
The value of the cursor parameter for the next page
{ "code": "Success", "message": "External logging services retrieved successfully", "data": { "items": [ { "id": "log_id", "service": "log_service_type", "enabled": true, "status": { "tasks": [ { "code": "reconnect_log", "message": "Reconnect Logging Service", "details": "Please provide required permissions" } ], "setup_state": "connected" } } ], "next_cursor": "cursor_value" } }