canvas_create_user
Add a new user to a Canvas account by specifying account ID, user details, and login credentials, including name, unique ID, and optional time zone or SIS ID.
Instructions
Create a new user in an account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ID of the account | |
pseudonym | Yes | ||
user | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "ID of the account",
"type": "number"
},
"pseudonym": {
"properties": {
"password": {
"description": "User's password",
"type": "string"
},
"send_confirmation": {
"description": "Send confirmation email",
"type": "boolean"
},
"sis_user_id": {
"description": "SIS ID for the user",
"type": "string"
},
"unique_id": {
"description": "Unique login ID (email or username)",
"type": "string"
}
},
"required": [
"unique_id"
],
"type": "object"
},
"user": {
"properties": {
"name": {
"description": "Full name of the user",
"type": "string"
},
"short_name": {
"description": "Short name of the user",
"type": "string"
},
"sortable_name": {
"description": "Sortable name (Last, First)",
"type": "string"
},
"time_zone": {
"description": "User's time zone",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"account_id",
"user",
"pseudonym"
],
"type": "object"
}