POST api/Account/DeleteRequestorUser

Deletes the user by the provider key. The role of administrator is required.

Request Information

URI Parameters

None.

Body Parameters

DeleteRequestorUserPost
NameDescriptionTypeAdditional information
UserProviderKey

User id

string

None.

Force

If true the method deletes the user though he has some tickets

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserProviderKey": "6efb55b5-f9cd-4385-899e-61ee30c26abd",
  "Force": true
}

application/xml, text/xml

Sample:
<DeleteRequestorUserPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <Force>true</Force>
  <UserProviderKey>6efb55b5-f9cd-4385-899e-61ee30c26abd</UserProviderKey>
</DeleteRequestorUserPost>

Response Information

Resource Description

IHttpActionResult

None.