You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Delete a single account member by ID. Requests to delete account members will not work if SCIM is enabled for the account.
22
22
23
23
### Example
24
24
@@ -60,7 +60,7 @@ null (empty response body)
60
60
### HTTP request headers
61
61
62
62
-**Content-Type**: Not defined
63
-
-**Accept**: Not defined
63
+
-**Accept**: application/json
64
64
65
65
66
66
## getMember
@@ -137,7 +137,7 @@ let apiInstance = new LaunchDarklyApi.AccountMembersApi();
137
137
let opts = {
138
138
'limit':789, // Number | The number of members to return in the response. Defaults to 20.
139
139
'offset':789, // Number | Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first ten items and then return the next `limit` items.
140
-
'filter':"filter_example", // String | A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained below.
140
+
'filter':"filter_example", // String | A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained above.
141
141
'sort':"sort_example"// String | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order.
**limit** | **Number**| The number of members to return in the response. Defaults to 20. | [optional]
158
158
**offset** | **Number**| Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first ten items and then return the next `limit` items. | [optional]
159
-
**filter** | **String**| A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained below. | [optional]
159
+
**filter** | **String**| A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained above. | [optional]
160
160
**sort** | **String**| A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. | [optional]
161
161
162
162
### Return type
@@ -179,7 +179,7 @@ Name | Type | Description | Notes
179
179
180
180
Modify an account member
181
181
182
-
Update a single account member. The request should be a valid JSON Patch document describing the changes to be made to the member.
182
+
Update a single account member. The request should be a valid JSON Patch document describing the changes to be made to the member. Requests to update account members will not work if SCIM is enabled for the account.
183
183
184
184
### Example
185
185
@@ -228,11 +228,11 @@ Name | Type | Description | Notes
228
228
229
229
## postMembers
230
230
231
-
> Members postMembers(inlineObject1)
231
+
> Members postMembers(newMemberForm)
232
232
233
233
Invite new members
234
234
235
-
> ### Full use of this API resource is only available to accounts with paid subscriptions > > The ability to bulk invite members is a paid feature. Single members may be invited if not on a paid plan. Invite one or more new members to join an account. Each member is sent an invitation. Members with \"admin\" or \"owner\" roles may create new members, as well as anyone with a \"createMember\" permission for \"member/\\*\". If a member cannot be invited, the entire request is rejected and no members are invited from that request. Each member _must_ have an `email` field and either a `role` or a `customRoles` field. If any of the fields are not populated correctly, the request is rejected with the reason specified in the \"message\" field of the response. _No more than 50 members may be created per request._ A request may also fail because of conflicts with existing members. These conflicts are reported using the additional `code` and `invalid_emails` response fields with the following possible values for `code`: - **email_already_exists_in_account**: A member with this email address already exists in this account. - **email_taken_in_different_account**: A member with this email address exists in another account. - **duplicate_email**s: This request contains two or more members with the same email address. A request that fails for one of the above reasons returns an HTTP response code of 400 (Bad Request).
235
+
> ### Full use of this API resource is only available to accounts with paid subscriptions > > The ability to bulk invite members is a paid feature. Single members may be invited if not on a paid plan. Invite one or more new members to join an account. Each member is sent an invitation. Members with \"admin\" or \"owner\" roles may create new members, as well as anyone with a \"createMember\" permission for \"member/\\*\". If a member cannot be invited, the entire request is rejected and no members are invited from that request. Each member _must_ have an `email` field and either a `role` or a `customRoles` field. If any of the fields are not populated correctly, the request is rejected with the reason specified in the \"message\" field of the response. Requests to create account members will not work if SCIM is enabled for the account. _No more than 50 members may be created per request._ A request may also fail because of conflicts with existing members. These conflicts are reported using the additional `code` and `invalid_emails` response fields with the following possible values for `code`: - **email_already_exists_in_account**: A member with this email address already exists in this account. - **email_taken_in_different_account**: A member with this email address exists in another account. - **duplicate_email**s: This request contains two or more members with the same email address. A request that fails for one of the above reasons returns an HTTP response code of 400 (Bad Request).
236
236
237
237
### Example
238
238
@@ -246,8 +246,8 @@ ApiKey.apiKey = 'YOUR API KEY';
246
246
//ApiKey.apiKeyPrefix = 'Token';
247
247
248
248
let apiInstance =newLaunchDarklyApi.AccountMembersApi();
[**postFlagCopyConfigApprovalRequest**](ApprovalsApi.md#postFlagCopyConfigApprovalRequest) | **POST** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/copy/environments/{environmentKey}/approval-requests-flag-copy | Create approval request to copy flag configurations across environments
13
+
[**postFlagCopyConfigApprovalRequest**](ApprovalsApi.md#postFlagCopyConfigApprovalRequest) | **POST** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests-flag-copy | Create approval request to copy flag configurations across environments
0 commit comments