List All Log Services within Account
Returns a list of all accessible logging services within your Fivetran account.
Request schema
Query parameters
cursor
string
Paging cursor, read more about pagination
example:
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
format:
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/external-logging
GET /v1/external-logging?cursor=cursor_value&limit=100 HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
items
arrayrequired
The collection of returned items
id
stringrequired
The unique identifier for the log service within the Fivetran system.
example:
service
stringrequired
The name of the log service type within the Fivetran system. We support the following log services: azure_monitor_log, cloudwatch, datadog_log, splunkLog, new_relic_log, stackdriver (Google Cloud Logging).
example:
enabled
booleanrequired
The boolean value specifying whether the log service is enabled.
example:
next_cursor
string
The value of the cursor parameter for the next page
example:
{ "code": "Success", "message": "Operation performed.", "data": { "items": [ { "id": "log_id", "service": "log_service_type", "enabled": true } ], "next_cursor": "cursor_value" } }