invite_project_user
Enable project collaboration by inviting users via email with assigned roles. Streamline user onboarding for Taiga projects through automated invitations.
Instructions
Invites a user to a project by email with a specific role.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | |||
project_id | Yes | ||
role_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"title": "Email",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"role_id": {
"title": "Role Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"project_id",
"email",
"role_id"
],
"title": "invite_project_userArguments",
"type": "object"
}