Update an External Secrets Manager
Updates the configuration of an existing External Secrets Manager instance.
Request schema
Path parameters
esmId
stringrequired
The unique identifier of the External Secrets Manager instance within the Fivetran system.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Request
config
objectrequired
Http + 1.1
PATCH
https://api.fivetran.com/v1/external-secrets-managers/lucky_tiger
PATCH /v1/external-secrets-managers/lucky_tiger HTTP/1.1 Accept: application/json Authorization: BasicContent-Type: application/json Host: api.fivetran.com Content-Length: 18 { "config": {} }
Responses
200
Successful response
400
Validation error
404
External Secrets Manager not found
200
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
Response containing External Secrets Manager instance details
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:
{ "code": "Success", "message": "Resource updated successfully", "data": { "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" } }