When getting a list of user objects using the API below:
/api/v1/accounts/:account_id/users
we get something like this returned:
{
"id": 1000001,
"name": "Adam Example",
"sortable_name": "Example, Adam",
"short_name": "Adam Example",
"login_id": "aexample"
}
Is there a way of including other full user details in the return json of this such as integration_id, much like the example API user object on the API documentation page here?
Users - Canvas LMS REST API Documentation
Thanks