Create Account Log Service
Creates an account-level logging service.
Request schema
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Request
The name of the log service type within the Fivetran system. We support the following log services: azure_monitor_log, cloudwatch, datadog_log, grafana_loki, splunkLog, new_relic_log, stackdriver (Google Cloud Logging).
The boolean value specifying whether the log service is enabled.
POST /v1/external-logging/account HTTP/1.1 Accept: application/json Authorization: BasicContent-Type: application/json Host: api.fivetran.com Content-Length: 71 { "service": "azure_monitor_log", "enabled": true, "config": {} }
Responses
201
Response status code
Response status text
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, grafana_loki, splunkLog, new_relic_log, stackdriver (Google Cloud Logging).
The boolean value specifying whether the log service is enabled.
{ "code": "Success", "message": "Account external logging service has been added", "data": { "id": "log_id", "service": "azure_monitor_log", "enabled": true, "config": { "workspace_id": "string", "primary_key": "string" } } }