v1
latestOpenAPI 3.1.02026-07-22106199311.5 KBConnections
Update an existing environment connection override
Updates an existing environment-specific connection override. The override must already exist — returns 404 if it does not. Use the POST endpoint to create a new override. The override's connection type is determined by the parent project connection.
put/v1/projects/{projectId}/connections/environment-overrides
Path parameters
projectIdstring required
The unique identifier of the project containing the connection
Request body
Example request
{
"authType": "OAUTH_CLIENT_CRED",
"connectionName": "Salesforce",
"connectionOverrides": {
"connectionProperties": {
"credentialSecretName": "aws-platform-credentials"
}
},
"environmentName": "PROD"
}Response
Environment connection override updated successfully
Example response
{
"authProvider": "NONE",
"authType": "GENERIC_SECRET",
"connectionOverrides": {
"connectionProperties": {
"credentialSecretName": "aws-platform-credentials"
}
},
"name": "my-jira-connection",
"platformConnectionType": "COMPONENT_BASIC"
}