v1
latestOpenAPI 3.1.02026-07-22106199311.5 KBConnections
Update an existing project connection by name.
Performs a full replacement of the connection details. Any fields not included in the update request will be unset.
put/v1/projects/{projectId}/connections
Path parameters
projectIdstring required
The unique identifier of the project containing the connection to update.
Query parameters
connectionNamestring required
The name of the connection to update.
Request body
Example request
{
"authType": "GENERIC_SECRET",
"connectionDetails": {
"connectionProperties": {
"credentialSecretName": "aws-platform-credentials"
}
},
"platformConnectionType": "COMPONENT_BASIC"
}Response
Successfully updated the project connection
Example response
{
"authProvider": "salesforce",
"authType": "GENERIC_SECRET",
"connectionDetails": {
"connectionProperties": {
"credentialSecretName": "aws-platform-credentials"
}
},
"name": "my-secret",
"platformConnectionType": "COMPONENT_BASIC"
}