List all System Keys
Returns a list of system keys 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/system-keys?cursor=vcDfgTEda6t&limit=100 HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
Successful response schema
Response status code
Response status text
The collection of return items
The unique identifier for the system key within the Fivetran system
The system key name within the account
The key value of the system key
The secret value of rotated system key
The IDs of managed entities
The IDs of managed groups
The access level for the permission
The resource type for the permission
The system key creation timestamp
The system key expiration timestamp
The timestamp of last usage
The system key update timestamp
The value of the cursor parameter for the next page
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "key_id",
"name": "MySystemKey",
"key": "ft_rDefAFDSgFdAGdFG",
"secret": "uytFfdSfDADFgfCgFBVsdCSFg4fsGfFg87fhRuuFASuTHkETSfg",
"permissions": [
{
"resource_filter": {
"ids": {},
"group_ids": {}
},
"access_level": "MANAGE",
"resource_type": "DESTINATION"
}
],
"created_at": "2023-08-20T10:15:20.677566Z",
"expired_at": "2024-08-20T10:15:20.677566Z",
"last_used_at": "2023-08-20T10:15:20.677566Z",
"updated_at": "2023-08-20T10:15:20.677566Z"
}
],
"nextCursor": "cursor_value"
}
}