Revert Member Overrides Action

Revert all overrides for a member under a root quote line item and restore the member details to the default configuration of the group class.

This action is available in API version 68.0 and later.

Supported REST HTTP Methods

URI
/services/data/v68.0/actions/standard/revertMemberOverrides
Formats
JSON, XML
HTTP Methods
POST
Authentication
Authorization: Bearertoken

Inputs

Input Details
memberId
Type

string

Description
Required. ID of the GroupCensusMember whose bespoke overrides are reverted.
rootQliId
Type

string

Description
Required. ID of the root plan QuoteLineItem whose member overrides are reverted.

Outputs

Output Details
resultMessage
Type

string

Description
Message describing the result of the revert operation.

Example

POST

This sample request is for the Revert Member Overrides action.

1{
2  "inputs": [
3    {
4      "memberId": "0r6xx000000001aEAA",
5      "rootQliId": "0QLxx0000004CtoCAE"
6    }
7  ]
8}

This sample response is for the Revert Member Overrides action.

1[
2  {
3    "actionName": "revertMemberOverrides",
4    "errors": null,
5    "invocationId": null,
6    "isSuccess": true,
7    "outcome": null,
8    "outputValues": {
9      "resultMessage": "The operation succeeded successfully."
10    },
11    "sortOrder": -1,
12    "version": 1
13  }
14]