clerk.bulk_create_organization_invitations
ActiveTool of Vee3
declared in 1.27.1
Invite multiple email addresses to join a Clerk organization in one request. 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 list of created invitation summaries. Cost = 10 tokens.
Parameters schema
{
"type": "object",
"title": "bulk_create_clerk_organization_invitationsArguments",
"required": [
"organization_id",
"invitations"
],
"properties": {
"invitations": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"title": "Invitations",
"description": "List of invitations to create. Each item requires email_address and role."
},
"organization_id": {
"type": "string",
"title": "Organization Id",
"description": "Clerk organization id (org_...) to operate on."
},
"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."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries