GET api/Teachers/{id}
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | No documentation available. |
Define this parameter in the request URI. |
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
[
{
"id": 1,
"teacherName": "sample string 2",
"matiere": "sample string 3"
},
{
"id": 1,
"teacherName": "sample string 2",
"matiere": "sample string 3"
},
{
"id": 1,
"teacherName": "sample string 2",
"matiere": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfTeachers xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppAPI">
<Teachers>
<id>1</id>
<matiere>sample string 3</matiere>
<teacherName>sample string 2</teacherName>
</Teachers>
<Teachers>
<id>1</id>
<matiere>sample string 3</matiere>
<teacherName>sample string 2</teacherName>
</Teachers>
<Teachers>
<id>1</id>
<matiere>sample string 3</matiere>
<teacherName>sample string 2</teacherName>
</Teachers>
</ArrayOfTeachers>