GET api/getControlpoints?checkListId={checkListId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| checkListId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of IdiotControlPoint| Name | Description | Type | Additional information |
|---|---|---|---|
| ControlPointId | integer |
None. |
|
| ChecklistId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ControlPointId": 1,
"ChecklistId": 2
},
{
"ControlPointId": 1,
"ChecklistId": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfIdiotControlPoint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Malibu.EvelynPepper.Dto">
<IdiotControlPoint>
<ChecklistId>2</ChecklistId>
<ControlPointId>1</ControlPointId>
</IdiotControlPoint>
<IdiotControlPoint>
<ChecklistId>2</ChecklistId>
<ControlPointId>1</ControlPointId>
</IdiotControlPoint>
</ArrayOfIdiotControlPoint>