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
Get a time-series array of the number of monthly experimentation keys from your account. The granularity is always daily, with a max of 31 days.
146
+
147
+
### Example
148
+
149
+
```javascript
150
+
importLaunchDarklyApifrom'launchdarkly-api';
151
+
let defaultClient =LaunchDarklyApi.ApiClient.instance;
152
+
// Configure API key authorization: ApiKey
153
+
let ApiKey =defaultClient.authentications['ApiKey'];
154
+
ApiKey.apiKey='YOUR API KEY';
155
+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
156
+
//ApiKey.apiKeyPrefix = 'Token';
157
+
158
+
let apiInstance =newLaunchDarklyApi.AccountUsageBetaApi();
159
+
let opts = {
160
+
'from':"from_example", // String | The series of data returned starts from this timestamp (Unix seconds). Defaults to the beginning of the current month.
161
+
'to':"to_example"// String | The series of data returned ends at this timestamp (Unix seconds). Defaults to the current time.
**from** | **String**| The series of data returned starts from this timestamp (Unix seconds). Defaults to the beginning of the current month. | [optional]
178
+
**to** | **String**| The series of data returned ends at this timestamp (Unix seconds). Defaults to the current time. | [optional]
179
+
180
+
### Return type
181
+
182
+
[**SeriesIntervalsRep**](SeriesIntervalsRep.md)
183
+
184
+
### Authorization
185
+
186
+
[ApiKey](../README.md#ApiKey)
187
+
188
+
### HTTP request headers
189
+
190
+
-**Content-Type**: Not defined
191
+
-**Accept**: application/json
192
+
193
+
138
194
## getMauSdksByType
139
195
140
196
> SdkListRep getMauSdksByType(opts)
141
197
142
198
Get MAU SDKs by type
143
199
144
-
Get a list of SDKs. These are all of the SDKs that have connected to LaunchDarkly by monthly active users (MAU) in the requested time period.
200
+
Get a list of SDKs. These are all of the SDKs that have connected to LaunchDarkly by monthly active users (MAU) in the requested time period.<br/><br/>Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. Use [Get client-side monthly context instances uage](/tag/Account-usage-(beta)#operation/getCMCIUsage) instead. To learn more, read [Account usage metrics](https://docs.launchdarkly.com/home/billing/usage-metrics).
145
201
146
202
### Example
147
203
@@ -198,7 +254,7 @@ Name | Type | Description | Notes
198
254
199
255
Get MAU usage
200
256
201
-
Get a time-series array of the number of monthly active users (MAU) seen by LaunchDarkly from your account. The granularity is always daily.
257
+
Get a time-series array of the number of monthly active users (MAU) seen by LaunchDarkly from your account. The granularity is always daily.<br/><br/>Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. Use [Get client-side monthly context instances uage](/tag/Account-usage-(beta)#operation/getCMCIUsage) instead. To learn more, read [Account usage metrics](https://docs.launchdarkly.com/home/billing/usage-metrics).
202
258
203
259
### Example
204
260
@@ -265,7 +321,7 @@ Name | Type | Description | Notes
265
321
266
322
Get MAU usage by category
267
323
268
-
Get time-series arrays of the number of monthly active users (MAU) seen by LaunchDarkly from your account, broken down by the category of users. The category is either `browser`, `mobile`, or `backend`.
324
+
Get time-series arrays of the number of monthly active users (MAU) seen by LaunchDarkly from your account, broken down by the category of users. The category is either `browser`, `mobile`, or `backend`.<br/><br/>Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. Use [Get client-side monthly context instances uage](/tag/Account-usage-(beta)#operation/getCMCIUsage) instead. To learn more, read [Account usage metrics](https://docs.launchdarkly.com/home/billing/usage-metrics).
[**deleteApprovalRequestForFlag**](ApprovalsApi.md#deleteApprovalRequestForFlag) | **DELETE** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{id} | Delete approval request for a flag
8
8
[**getApprovalForFlag**](ApprovalsApi.md#getApprovalForFlag) | **GET** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{id} | Get approval request for a flag
9
9
[**getApprovalsForFlag**](ApprovalsApi.md#getApprovalsForFlag) | **GET** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests | List approval requests for a flag
[**postApprovalRequestApplyForFlag**](ApprovalsApi.md#postApprovalRequestApplyForFlag) | **POST** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{id}/apply | Apply approval request for a flag
11
+
[**postApprovalRequestForFlag**](ApprovalsApi.md#postApprovalRequestForFlag) | **POST** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests | Create approval request for a flag
12
+
[**postApprovalRequestReviewForFlag**](ApprovalsApi.md#postApprovalRequestReviewForFlag) | **POST** /api/v2/projects/{projectKey}/flags/{featureFlagKey}/environments/{environmentKey}/approval-requests/{id}/reviews | Review approval request for a flag
13
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