POST api/users/deleteUsers

Soft delete users

Request Information

URI Parameters

None.

Body Parameters

Users unique identifiers

Collection of globally unique identifier

Request Formats

application/json, text/json

Sample:
[
  "b65ced6d-abe5-4263-b0b4-e6e0310a33da",
  "4bf458e2-7e3e-43e8-b06a-d01a0ee68f95"
]

application/xml, text/xml

Sample:
<ArrayOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <guid>b65ced6d-abe5-4263-b0b4-e6e0310a33da</guid>
  <guid>4bf458e2-7e3e-43e8-b06a-d01a0ee68f95</guid>
</ArrayOfguid>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponse
NameDescriptionTypeAdditional information
Errors

Collection of Error

None.

IsValid

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Errors": [
    {
      "PropertyName": "sample string 1",
      "Message": "sample string 2"
    },
    {
      "PropertyName": "sample string 1",
      "Message": "sample string 2"
    }
  ],
  "IsValid": false
}

application/xml, text/xml

Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Core">
  <Errors>
    <Error>
      <Message>sample string 2</Message>
      <PropertyName>sample string 1</PropertyName>
    </Error>
    <Error>
      <Message>sample string 2</Message>
      <PropertyName>sample string 1</PropertyName>
    </Error>
  </Errors>
</ApiResponse>