POST api/people/group/{groupId}/redactwholegroup?note={note}&sendEmail={sendEmail}
Redact every member of a group by groupid Each first request for a group member is just logged as an event Second request for each member 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 Processes this people API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId |
The unique identifier of the group resource. |
integer |
Required |
| note |
The note value supplied with the request. |
string |
Default value is |
| sendEmail |
The send email value supplied with the request. |
boolean |
Default value is True |
Body Parameters
None.
Response Information
Resource Description
Details of the redation jobs
Collection of JobInvocationDetailsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| SupportsCancellation |
Indicates whether supports cancellation is true. |
boolean |
None. |
| ReportsProgress |
Indicates whether reports progress is true. |
boolean |
None. |
| InitialStatusText |
The initial status text value. |
string |
None. |
| JobReference |
The job reference globally unique identifier. |
globally unique identifier |
None. |
| Success |
Indicates whether success is true. |
boolean |
None. |
Response Formats
application/json, text/json
[
{
"SupportsCancellation": true,
"ReportsProgress": true,
"InitialStatusText": "sample string 3",
"JobReference": "891ba937-a7b9-4616-8e16-8d8fe839db49",
"Success": true
},
{
"SupportsCancellation": true,
"ReportsProgress": true,
"InitialStatusText": "sample string 3",
"JobReference": "891ba937-a7b9-4616-8e16-8d8fe839db49",
"Success": true
}
]