POST api/people/{id}/redact?note={note}&sendEmail={sendEmail}

Redact a Person by PersonId First request is just logged as an event Second request must be by a branch admin and actually redacts the person Only set sendEmail to false for internal bulk redact requests, the normal process requires an email. This will also suppress notifications to the negotiator.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

note

string

Default value is

sendEmail

boolean

Default value is True

Body Parameters

None.

Response Information

Resource Description

Details of the redation job

Dezrez.Core.DataContracts.External.Api.Job.Query.Get.JobInvocationDetailsDataContract
NameDescriptionTypeAdditional information
SupportsCancellation

boolean

None.

ReportsProgress

boolean

None.

InitialStatusText

string

None.

JobReference

globally unique identifier

None.

Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "SupportsCancellation": true,
  "ReportsProgress": true,
  "InitialStatusText": "sample string 3",
  "JobReference": "fda58d09-75fa-43f0-820d-ff4f1e65b223",
  "Success": true
}