GET api/UserPoints/UserPoints/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetPointsbyCourseid_Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Coursename | string |
None. |
|
| CourseID | integer |
None. |
|
| CDU | integer |
None. |
|
| PDU | integer |
None. |
|
| TPoint | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Coursename": "sample string 1",
"CourseID": 2,
"CDU": 3,
"PDU": 4,
"TPoint": 5
},
{
"Coursename": "sample string 1",
"CourseID": 2,
"CDU": 3,
"PDU": 4,
"TPoint": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfGetPointsbyCourseid_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechcanvassWebApi">
<GetPointsbyCourseid_Result>
<CDU>3</CDU>
<CourseID>2</CourseID>
<Coursename>sample string 1</Coursename>
<PDU>4</PDU>
<TPoint>5</TPoint>
</GetPointsbyCourseid_Result>
<GetPointsbyCourseid_Result>
<CDU>3</CDU>
<CourseID>2</CourseID>
<Coursename>sample string 1</Coursename>
<PDU>4</PDU>
<TPoint>5</TPoint>
</GetPointsbyCourseid_Result>
</ArrayOfGetPointsbyCourseid_Result>