v1
latestOpenAPI 3.1.02026-07-2618690613.4 KBConnections
Update connection
Update connection properties including credentials. Credentials are encrypted at rest and never returned in API responses.
This endpoint supports credential rotation for infrastructure-as-code workflows. Depending on the connection type, you can update:
- Password-based connections (Postgres, MySQL, etc.): Use passwordUnencrypted to update the password
- BigQuery: Use passwordUnencrypted to update the service account JSON
- Snowflake: Use privateKey to update the RSA private key (PEM format, minimum 2048 bits)
At least one field must be provided in the request body.
patch/v1/connections/{connectionId}
Path parameters
connectionIdstring uuid required
Connection ID
Request body
Example request
{
"passwordUnencrypted": "new-password-here",
"privateKey": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBg..."
}Response
Connection updated successfully
Example response
{
"success": true,
"message": "Updated connection credentials."
}