GET api/markings/setSyncIsRemovedFlag?syncGuid={syncGuid}

Method that should be used to set syncIsRemoved flag when deleting marking

Request Information

URI Parameters

NameDescriptionTypeAdditional information
syncGuid

the syncGuid value of the record that should be deleted

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ApiResult[string] with the result of the delete operation

ApiResultOfString
NameDescriptionTypeAdditional information
Errors

ErrorModel

None.

Result

string

None.

IsSuccess

boolean

None.

StatusCode

HttpStatusCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Errors": {
    "ErrorsNumber": 1,
    "Messages": [
      "sample string 1",
      "sample string 2"
    ],
    "MessagesString": "sample string 2"
  },
  "Result": "sample string 1",
  "IsSuccess": false,
  "StatusCode": 100
}

application/xml, text/xml

Sample:
<ApiResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSAeReader.Common.API">
  <Errors>
    <ErrorsNumber>1</ErrorsNumber>
    <Messages xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
    </Messages>
    <MessagesString>sample string 2</MessagesString>
  </Errors>
  <Result>sample string 1</Result>
  <StatusCode>Continue</StatusCode>
</ApiResultOfstring>