POST api/NotesApi/Delete
Метод удаления примечания
Request Information
URI Parameters
None.
Body Parameters
DeleteNoteApiRequestName | Description | Type | Additional information |
---|---|---|---|
Id |
Идентификатор примечания |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1 }
application/xml, text/xml
Sample:
<DeleteNoteApiRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mag.TourGate.TourGateWebClient.Models.Notes"> <Id>1</Id> </DeleteNoteApiRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
DeleteNoteApiResponseName | Description | Type | Additional information |
---|---|---|---|
IsDeleted | boolean |
None. |
|
ResultQueryInfo |
Сообщения |
ResultQueryInfoContainer |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsDeleted": true, "RedirectUrl": "sample string 2", "ResultQueryInfo": { "ResultsCount": 1, "HasError": false, "Info": [], "CacheStorageTimeEnd": true, "RefreshPeriod": 0, "DelFromCacheDateTime": "2024-11-23T17:08:34.8785346+03:00", "UserMessages": "", "UserMessagesHtml": "" } }
application/xml, text/xml
Sample:
<DeleteNoteApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mag.TourGate.TourGateWebClient.Models.Notes"> <RedirectUrl xmlns="http://schemas.datacontract.org/2004/07/Mag.TourGate.TourGateWebClient.Models.Common.Contract">sample string 2</RedirectUrl> <ResultQueryInfo xmlns="http://schemas.datacontract.org/2004/07/Mag.TourGate.TourGateWebClient.Models.Common.Contract"> <_x003C_DelFromCacheDateTime_x003E_k__BackingField>2024-11-23T17:08:34.8785346+03:00</_x003C_DelFromCacheDateTime_x003E_k__BackingField> <_x003C_ResultsCount_x003E_k__BackingField>1</_x003C_ResultsCount_x003E_k__BackingField> <info /> </ResultQueryInfo> <IsDeleted>true</IsDeleted> </DeleteNoteApiResponse>