Connectors
Update a custom provider
Updates an existing environment-scoped custom provider (connector) by its identifier. Only the fields provided in the request are modified.
put/api/v1/custom-providers/{identifier}
Path parameters
identifierstring required
Identifier of the custom connected app provider to update.
Request body
Example request
{
"description": "Connect to Google Workspace for email and calendar integration",
"display_name": "Google Workspace",
"icon_src": "https://example.com/images/my-connector.svg",
"metadata": {
"api_version": "v2",
"region": "us-east-1"
},
"proxy_enabled": true,
"proxy_url": "https://mcp.example.com/mcp"
}Response
Returns the updated custom provider with its current configuration
Example response
{
"provider": {
"metadata": {
"api_version": "v2",
"region": "us-east-1"
}
}
}