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
**default_track_events** | **bool** | Enables tracking detailed information for new flags by default |
18
19
**require_comments** | **bool** | Whether members who modify flags and segments through the LaunchDarkly user interface are required to add a comment |
19
20
**confirm_changes** | **bool** | Whether members who modify flags and segments through the LaunchDarkly user interface are required to confirm those changes |
Copy file name to clipboardExpand all lines: docs/MetricsBetaApi.md
+4-7Lines changed: 4 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -291,13 +291,10 @@ List metric groups
291
291
Get a list of all metric groups for the specified project.
292
292
293
293
### Expanding the metric groups response
294
-
LaunchDarkly supports one field for expanding the "Get metric groups" response. By default, these fields are **not** included in the response.
295
294
296
-
To expand the response, append the `expand` query parameter and add a comma-separated list with the following field:
295
+
This endpoint does not support response expansion.
297
296
298
-
-`experiments` includes all experiments from the specific project that use the metric group
299
-
300
-
For example, `expand=experiments` includes the `experiments` field in the response.
297
+
Although the API accepts an `expand` query parameter for compatibility reasons, it does not currently modify the response. The parameter is reserved for future use.
301
298
302
299
### Filtering metric groups
303
300
@@ -367,7 +364,7 @@ with launchdarkly_api.ApiClient(configuration) as api_client:
367
364
project_key ='project_key_example'# str | The project key
368
365
filter='filter_example'# str | Accepts filter by `experimentStatus`, `query`, `kind`, `hasConnections`, `maintainerIds`, and `maintainerTeamKey`. Example: `filter=experimentStatus equals 'running' and query equals 'test'`. (optional)
369
366
sort ='sort_example'# str | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. Read the endpoint description for a full list of available sort fields. (optional)
370
-
expand ='expand_example'# str | A comma-separated list of properties that can reveal additional information in the response. (optional)
367
+
expand ='expand_example'# str | This parameter is reserved for future use and is not currently supported on this endpoint. (optional)
371
368
limit =56# int | The number of metric groups to return in the response. Defaults to 20. Maximum limit is 50. (optional)
372
369
offset =56# int | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and returns the next `limit` items. (optional)
373
370
@@ -390,7 +387,7 @@ Name | Type | Description | Notes
390
387
**project_key** | **str**| The project key |
391
388
**filter** | **str**| Accepts filter by `experimentStatus`, `query`, `kind`, `hasConnections`, `maintainerIds`, and `maintainerTeamKey`. Example: `filter=experimentStatus equals 'running' and query equals 'test'`. | [optional]
392
389
**sort** | **str**| A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order. Read the endpoint description for a full list of available sort fields. | [optional]
393
-
**expand** | **str**| A comma-separated list of properties that can reveal additional information in the response. | [optional]
390
+
**expand** | **str**| This parameter is reserved for future use and is not currently supported on this endpoint. | [optional]
394
391
**limit** | **int**| The number of metric groups to return in the response. Defaults to 20. Maximum limit is 50. | [optional]
395
392
**offset** | **int**| Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and returns the next `limit` items. | [optional]
0 commit comments