This feature is in beta
To use this feature, pass in a header including the
LD-API-Version
key with value set tobeta
. Use this header with each call. To learn more, read Beta resources.Resources that are in beta are still undergoing testing and development. They may change without notice, including becoming backwards incompatible.
Full use of this API resource is an Enterprise feature
The ability to perform a partial update to multiple members is available to customers on an Enterprise plan. If you are on another plan, you can update members individually. To learn more, read about our pricing. To upgrade your plan, contact Sales.
Perform a partial update to multiple members. Updating members uses the semantic patch format.
To make a semantic patch request, you must append domain-model=launchdarkly.semanticpatch
to your Content-Type
header. To learn more, read Updates using semantic patch.
Semantic patch requests support the following kind
instructions for updating members.
Replaces the roles of the specified members. This also removes all custom roles assigned to the specified members.
value
: The new role. Must be a valid built-in role. To learn more about built-in roles, read LaunchDarkly's built-in roles.memberIDs
: List of member IDs.Here's an example:
{
"instructions": [{
"kind": "replaceMemberRoles",
"value": "reader",
"memberIDs": [
"1234a56b7c89d012345e678f",
"507f1f77bcf86cd799439011"
]
}]
}
Replaces the roles of all members. This also removes all custom roles assigned to the specified members.
Members that match any of the filters are excluded from the update.
value
: The new role. Must be a valid built-in role. To learn more about built-in roles, read LaunchDarkly's built-in roles.filterLastSeen
: (Optional) A JSON object with one of the following formats:{"never": true}
- Members that have never been active, such as those who have not accepted their invitation to LaunchDarkly, or have not logged in after being provisioned via SCIM.{"noData": true}
- Members that have not been active since LaunchDarkly began recording last seen timestamps.{"before": 1608672063611}
- Members that have not been active since the provided value, which should be a timestamp in Unix epoch milliseconds.filterQuery
: (Optional) A string that matches against the members' emails and names. It is not case sensitive.filterRoles
: (Optional) A |
separated list of roles and custom roles. For the purposes of this filtering, Owner
counts as Admin
.filterTeamKey
: (Optional) A string that matches against the key of the team the members belong to. It is not case sensitive.ignoredMemberIDs
: (Optional) A list of member IDs.Here's an example:
{
"instructions": [{
"kind": "replaceAllMembersRoles",
"value": "reader",
"filterLastSeen": { "never": true }
}]
}
Replaces the custom roles of the specified members.
values
: List of new custom roles. Must be a valid custom role key or ID.memberIDs
: List of member IDs.Here's an example:
{
"instructions": [{
"kind": "replaceMembersCustomRoles",
"values": [ "example-custom-role" ],
"memberIDs": [
"1234a56b7c89d012345e678f",
"507f1f77bcf86cd799439011"
]
}]
}
Replaces the custom roles of all members. Members that match any of the filters are excluded from the update.
values
: List of new roles. Must be a valid custom role key or ID.filterLastSeen
: (Optional) A JSON object with one of the following formats:{"never": true}
- Members that have never been active, such as those who have not accepted their invitation to LaunchDarkly, or have not logged in after being provisioned via SCIM.{"noData": true}
- Members that have not been active since LaunchDarkly began recording last seen timestamps.{"before": 1608672063611}
- Members that have not been active since the provided value, which should be a timestamp in Unix epoch milliseconds.filterQuery
: (Optional) A string that matches against the members' emails and names. It is not case sensitive.filterRoles
: (Optional) A |
separated list of roles and custom roles. For the purposes of this filtering, Owner
counts as Admin
.filterTeamKey
: (Optional) A string that matches against the key of the team the members belong to. It is not case sensitive.ignoredMemberIDs
: (Optional) A list of member IDs.Here's an example:
{
"instructions": [{
"kind": "replaceAllMembersCustomRoles",
"values": [ "example-custom-role" ],
"filterLastSeen": { "never": true }
}]
}
Members response
Invalid request
Invalid access token
Forbidden
Status conflict
Rate limited
{- "comment": "Optional comment about the update",
- "instructions": [
- {
- "kind": "replaceMembersRoles",
- "memberIDs": [
- "1234a56b7c89d012345e678f",
- "507f1f77bcf86cd799439011"
], - "value": "reader"
}
]
}
{- "members": [
- "1234a56b7c89d012345e678f"
], - "errors": [
- {
- "507f1f77bcf86cd799439011": "you cannot modify your own role"
}
]
}