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
limit:789, # Integer | The number of members to return in the response. Defaults to 20.
179
179
offset:789, # Integer | 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.
180
-
filter:'filter_example', # String | A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained below.
180
+
filter:'filter_example', # String | A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained above.
181
181
sort:'sort_example'# String | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order.
182
182
}
183
183
@@ -214,7 +214,7 @@ end
214
214
| ---- | ---- | ----------- | ----- |
215
215
|**limit**|**Integer**| The number of members to return in the response. Defaults to 20. |[optional]|
216
216
|**offset**|**Integer**| 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]|
217
-
|**filter**|**String**| A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained below. |[optional]|
217
+
|**filter**|**String**| A comma-separated list of filters. Each filter is of the form `field:value`. Supported fields are explained above. |[optional]|
218
218
|**sort**|**String**| A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. |[optional]|
219
219
220
220
### Return type
@@ -237,7 +237,7 @@ end
237
237
238
238
Modify an account member
239
239
240
-
Update a single account member. The request should be a valid JSON Patch document describing the changes to be made to the member.
240
+
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.
241
241
242
242
### Examples
243
243
@@ -306,11 +306,11 @@ end
306
306
307
307
## post_members
308
308
309
-
> <Members> post_members(inline_object1)
309
+
> <Members> post_members(new_member_form)
310
310
311
311
Invite new members
312
312
313
-
> ### 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).
313
+
> ### 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).
314
314
315
315
### Examples
316
316
@@ -326,11 +326,11 @@ LaunchDarklyApi.configure do |config|
0 commit comments