Member Overrides (POST, DELETE)

Apply, clone, or revert member-level plan and attribute overrides on a root quote line item. Use POST to upsert overrides or to clone them from a source member to one or more target members. Use DELETE to revert overrides for a member.
Resource
1/connect/insurance/quote-line-items/rootQliId/overrides
Resource example
1https://yourInstance.salesforce.com/services/data/v68.0/connect/insurance/quote-line-items/0QLxx0000004CtoCAE/overrides
Available version
68.0
HTTP methods
POST, DELETE
Path parameter for POST and DELETE
Parameter Name Type Description Required or Optional Available Version
rootQliId String ID of the root quote line item that the member overrides apply to. Required 68.0
Request parameters for POST
Parameter Name Type Description Required or Optional Available Version
action String Override action to perform. Specify clone to copy overrides from sourceMemberId to the members listed in targetMemberIds. If not specified, the API upserts the overrides in the request body. Optional 68.0
sourceMemberId String ID of the group census member whose override configuration is cloned when action is clone. Optional 68.0
Request body for POST
JSON example
1{
2  "contextId": "1cuxx0000004C92EAA",
3  "overrides": [
4    {
5      "memberId": "0r6xx000000001aEAA",
6      "operation": "UPSERT",
7      "productId": "01txx0000004C92AAE",
8      "quoteLineItemId": "0QLxx0000004CtoCAE",
9      "attributes": [
10        {
11          "attributeId": "a0Axx0000004C92EAA",
12          "attributeValue": "1500"
13        }
14      ]
15    }
16  ],
17  "targetMemberIds": [
18    "0r6xx000000002bEAA"
19  ]
20}
Properties
Name Type Description Required or Optional Available Version
contextId String Optional context ID if the UI already configured the overrides. Optional 68.0
overrides Member Override Input[] List of member overrides to apply. Optional 68.0
targetMemberIds String[] IDs of the group census members that receive the cloned override configuration. Use this property with the action=clone request parameter. Optional 68.0
Response body for POST
Member Overrides Response
Request parameters for DELETE
Parameter Name Type Description Required or Optional Available Version
memberId String ID of the group census member whose overrides are reverted on the root quote line item. Required 68.0
Response body for DELETE
Member Overrides Response