GET api/Equipment/BindingsDelete?BindId={BindId}&ActivId={ActivId}&UserId={UserId}
Удаление привязки, удаляет привязку из БД и снимает правило со свича.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BindId |
Id привязки, параметр не обязателен, принимает null |
integer |
Required |
| ActivId |
Id активации |
integer |
Required |
| UserId |
Id Сотрудника |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
BindingsDeleteResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Data |
Результат удаления привязки |
boolean |
None. |
| Result |
Результат обработки запроса |
boolean |
None. |
| Message |
Сообщение |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": true,
"Result": true,
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<BindingsDeleteResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ServiceApi.Models"> <Message>sample string 3</Message> <Result>true</Result> <Data>true</Data> </BindingsDeleteResult>