Get Teacher Data
This method returns teacher account data from SuccessMaker. If successful, this method will return the teacher resource as XML in the response body.
URI
https://[serverurl]/lms/api/schools/{school-id}/teachers/{guid}
URI Parameters
{school-id}
The organization district number
{guid}
The teacher's globally unique identifier
HTTP Method
GET
Resource Formats
text/xml
Authentication
required
Request Entities
n/a
Responses
200 OK
The teacher is returned as the response entity.
404 Not Found
There is no teacher with this GUID.
Response Entities
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Teacher>
<firstName>Rest</firstName>
<middleName></middleName>
<lastName>Teacher</lastName>
<username>Teacher11111_RI</username>
<userId>Teacher11111_RI</userId>
<title>DR</title>
</Teacher>