clerk.update_enterprise_connection
ActiveTool of Vee3
declared in 1.27.1
Update an enterprise SSO connection in a connected Clerk application. Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account. Returns the updated enterprise_connection summary. Cost = 8 tokens.
Parameters schema
{
"type": "object",
"title": "update_clerk_enterprise_connectionArguments",
"required": [
"connection_id"
],
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name",
"default": null,
"description": "Updated display name for the connection."
},
"oidc": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Oidc",
"default": null,
"description": "Updated OIDC client configuration."
},
"saml": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Saml",
"default": null,
"description": "Updated SAML IdP configuration."
},
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Active",
"default": null,
"description": "Whether the connection is active."
},
"domains": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"title": "Domains",
"default": null,
"description": "Updated domain list (replaces existing domains when provided)."
},
"connection_id": {
"type": "string",
"title": "Connection Id",
"description": "Clerk enterprise connection id (entc_...) to retrieve, update, delete, or test."
},
"organization_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Organization Id",
"default": null,
"description": "Clerk organization id (org_...) to link to this connection."
},
"clerk_instance_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Clerk Instance Id",
"default": null,
"description": "Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account."
},
"custom_attributes": {
"anyOf": [
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
{
"type": "null"
}
],
"title": "Custom Attributes",
"default": null,
"description": "Updated custom attribute mappings."
},
"sync_user_attributes": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Sync User Attributes",
"default": null,
"description": "Whether to sync user attributes on each sign-in."
},
"allow_organization_account_linking": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Allow Organization Account Linking",
"default": null,
"description": "Whether account linking via organization membership is allowed."
},
"disable_additional_identifications": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Disable Additional Identifications",
"default": null,
"description": "Whether to block additional identifications for this connection."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries