Uri
/services/maps/
Method
user.configure
Summary
Configure the user account details. Method is available when user is logged into any of the services. This will allow the user to update their name, surname, email address, uci or upn numbers.
Arguments
| Parameter | Data Type | Notes |
| alphanumeric | required | |
| firstname | alphanumeric | required |
| key | alphanumeric | required |
| secondname | alphanumeric | required |
| session | alphanumeric | required |
| uci | numeric | required |
| upn | numeric | required |
Example response
<?xml version="1.0" encoding="iso-8859-1" ?> <response stat="success"> <user id="189" key="df68b82743daec95b42b9b4335d8c1dc498075a2a2410a4e6248a9e19afd39f61ce3720e6b2" > <username>andrew_campbell</username> <email>a.campbell@taglearning.com</email> <firstname>andrew</firstname> <secondname>campbell</secondname> <uci>123456789123</uci> <upn>123456789123</upn> <messages> <unread>0</unread> </messages> <tasks> <student> <!-- Expanded lists --> <overdue>0</overdue> <awaiting_marking>0</awaiting_marking> <todo>0</todo> <marked>0</marked> <open>0</open> <complete>0</complete> </student> <teacher> <overdue>6</overdue> <awaiting_marking>6</awaiting_marking> <todo>56</todo> </teacher> </tasks> </user> </response> |