For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account Admins

List account admins

get
Authorizations
AuthorizationstringRequired
Query parameters
pageintegerOptional

Page number (defaults to 0)

sortstringOptional

Sort field (only 'name')

searchstringOptional

Search query to filter account admins

per_pageintegerOptional

Results per page

Responses
200

account admins listed

application/json
total_elementsintegerRequired

Total number of admins across all pages

page_numberintegerRequired

Current page number (0-based)

sizeintegerRequired

Page size

permission_keysstring[]Required

All available permission keys

total_pagesintegerRequired

Total number of pages

get/api/v1/account_admins
200

account admins listed

Create an account admin association

post

Creates a new account admin or adds account associations to an existing admin. account_ids may contain multiple account IDs.

Authorizations
AuthorizationstringRequired
Body
canvas_user_idstringRequired

Canvas user ID

user_namestringRequired

Full name of the user

email_addressstringRequired

Email address of the user

account_idsinteger[]Required

Account IDs to associate with the user

Responses
201

account admin created

application/json
canvas_user_idintegerRequired

Canvas user ID of the admin

account_idsinteger[]Required

Account IDs the user now administers

post/api/v1/account_admins
201

account admin created

Remove an admin from a specific account

delete

Removes the association between a user and a specific account.

Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired

Canvas user ID of the admin

account_idintegerRequired

Account ID to remove

Responses
204

association removed

No content

delete/api/v1/account_admins/{id}/accounts/{account_id}
204

association removed

No content

Remove all account associations for an admin

delete

Removes all account associations for the specified user.

Authorizations
AuthorizationstringRequired
Path parameters
idstringRequired

Canvas user ID of the admin

Responses
204

all associations removed

No content

delete/api/v1/account_admins/{id}
204

all associations removed

No content

Last updated

Was this helpful?