Apply Member Overrides Action

Apply member-specific overrides that differ from the member’s group class default configuration on a group insurance quote. Use this action to apply plan, coverage, or attribute overrides, or to clone an override configuration from one group census member to one or more target group census members on the same root plan. Cloning replaces each target member’s existing override configuration.

This action is available in API version 68.0 and later.

Supported REST HTTP Methods

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

Inputs

Input Details
contextId
Type

string

Description
Transaction context ID. If specified, it takes precedence over the inline overrides input.
memberOverrides
Type

Apex-defined

Description
An Apex ConnectApi.MemberOverridesContainerInputRepresentation record containing the per-member override operations to apply.
rootQliId
Type

string

Description
Required. ID of the root plan quote line item to which the member overrides are applied.
sourceMemberId
Type

string

Description
ID of the group census member whose override configuration is copied to the target members. If specified, the action clones the source member's overrides onto the target members instead of applying the inline overrides.
targetMemberIds
Type

string

Description
IDs of the group census members to receive the copied override configuration from the source member. Required if sourceMemberId is specified.

Outputs

Output Details
resultMessage
Type

string

Description
Message describing the result of the operation.

Example

POST

This sample request is for the Apply Member Overrides action.

No content provided

This sample response is for the Apply Member Overrides action.

1[
2  {
3    "actionName": "applyMemberOverrides",
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]