clerk.update_instance_organization_settings
ActiveTool of Vee3
declared in 1.27.1
Update organization feature settings for a connected Clerk instance. 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 organization settings. Cost = 8 tokens.
Parameters schema
{
"type": "object",
"title": "update_clerk_instance_organization_settingsArguments",
"properties": {
"enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Enabled",
"default": null,
"description": "Whether organizations should be enabled for the instance."
},
"creator_role": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Creator Role",
"default": null,
"description": "Default role assigned to the organization creator."
},
"domains_enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Domains Enabled",
"default": null,
"description": "Whether organization domains should be enabled."
},
"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."
},
"admin_delete_enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Admin Delete Enabled",
"default": null,
"description": "Whether organization admins can delete their organization."
},
"domains_default_role": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Domains Default Role",
"default": null,
"description": "Default role for members who join via a verified organization domain."
},
"initial_role_set_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Initial Role Set Key",
"default": null,
"description": "Initial role set key applied to new organizations."
},
"max_allowed_memberships": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Max Allowed Memberships",
"default": null,
"description": "Maximum organization memberships allowed per user."
},
"domains_enrollment_modes": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"title": "Domains Enrollment Modes",
"default": null,
"description": "Allowed organization domain enrollment modes: manual_invitation, automatic_invitation, or automatic_suggestion."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries