List all External Secrets Managers
Returns a list of all External Secrets Manager instances 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-secrets-managers
GET /v1/external-secrets-managers?cursor=cursor_value&limit=100 HTTP/1.1 Accept: application/json Authorization: BasicHost: api.fivetran.com
Responses
200
Successful response
200
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
undefinedrequired
items
arrayrequired
The collection of returned items
id
string
The unique identifier of the ESM instance
type
string
The type of ESM
enum:
name
string
The name of the ESM instance
config
object
Provider-specific configuration
property name *
object
additional property
description:
created_at
string
Timestamp when the ESM instance was created
format:
is_hybrid_deployment_compatible
boolean
Whether this ESM is compatible with hybrid deployment environments
updated_at
string
Timestamp when the ESM instance was last updated
format:
next_cursor
string
The value of the cursor parameter for the next page
example:
{ "code": "Success", "message": "Operation performed successfully", "data": { "items": [ { "id": "string", "type": "AZURE_KEY_VAULT", "name": "string", "config": { "property1": {}, "property2": {} }, "created_at": "2019-08-24T14:15:22Z", "is_hybrid_deployment_compatible": true, "updated_at": "2019-08-24T14:15:22Z" } ], "next_cursor": "cursor_value" } }