All URIs are relative to https://app.launchdarkly.com
Method | HTTP request | Description |
---|---|---|
delete_context_instances | DELETE /api/v2/projects/{projectKey}/environments/{environmentKey}/context-instances/{id} | Delete context instances |
evaluate_context_instance | POST /api/v2/projects/{projectKey}/environments/{environmentKey}/flags/evaluate | Evaluate flags for context instance |
get_context_attribute_names | GET /api/v2/projects/{projectKey}/environments/{environmentKey}/context-attributes | Get context attribute names |
get_context_attribute_values | GET /api/v2/projects/{projectKey}/environments/{environmentKey}/context-attributes/{attributeName} | Get context attribute values |
get_context_instances | GET /api/v2/projects/{projectKey}/environments/{environmentKey}/context-instances/{id} | Get context instances |
get_context_kinds_by_project_key | GET /api/v2/projects/{projectKey}/context-kinds | Get context kinds |
get_contexts | GET /api/v2/projects/{projectKey}/environments/{environmentKey}/contexts/{kind}/{key} | Get contexts |
put_context_kind | PUT /api/v2/projects/{projectKey}/context-kinds/{key} | Create or update context kind |
search_context_instances | POST /api/v2/projects/{projectKey}/environments/{environmentKey}/context-instances/search | Search for context instances |
search_contexts | POST /api/v2/projects/{projectKey}/environments/{environmentKey}/contexts/search | Search for contexts |
delete_context_instances(project_key, environment_key, id)
Delete context instances
Delete context instances by ID.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
id = 'id_example' # String | The context instance ID
begin
# Delete context instances
api_instance.delete_context_instances(project_key, environment_key, id)
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->delete_context_instances: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> delete_context_instances_with_http_info(project_key, environment_key, id)
begin
# Delete context instances
data, status_code, headers = api_instance.delete_context_instances_with_http_info(project_key, environment_key, id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->delete_context_instances_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
id | String | The context instance ID |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/json
evaluate_context_instance(project_key, environment_key, request_body, opts)
Evaluate flags for context instance
Evaluate flags for a context instance, for example, to determine the expected flag variation. Do not use this API instead of an SDK. The LaunchDarkly SDKs are specialized for the tasks of evaluating feature flags in your application at scale and generating analytics events based on those evaluations. This API is not designed for that use case. Any evaluations you perform with this API will not be reflected in features such as flag statuses and flag insights. Context instances evaluated by this API will not appear in the Contexts list. To learn more, read Comparing LaunchDarkly's SDKs and REST API. ### Filtering LaunchDarkly supports the filter
query param for filtering, with the following fields: - query
filters for a string that matches against the flags' keys and names. It is not case sensitive. For example: filter=query equals dark-mode
. - tags
filters the list to flags that have all of the tags in the list. For example: filter=tags contains [\"beta\",\"q1\"]
. You can also apply multiple filters at once. For example, setting filter=query equals dark-mode, tags contains [\"beta\",\"q1\"]
matches flags which match the key or name dark-mode
and are tagged beta
and q1
.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
request_body = { key: 3.56} # Hash<String, Object> |
opts = {
limit: 789, # Integer | The number of feature flags to return. Defaults to -1, which returns all flags
offset: 789, # Integer | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`.
sort: 'sort_example', # String | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order
filter: 'filter_example' # String | A comma-separated list of filters. Each filter is of the form `field operator value`. Supported fields are explained above.
}
begin
# Evaluate flags for context instance
result = api_instance.evaluate_context_instance(project_key, environment_key, request_body, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->evaluate_context_instance: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> evaluate_context_instance_with_http_info(project_key, environment_key, request_body, opts)
begin
# Evaluate flags for context instance
data, status_code, headers = api_instance.evaluate_context_instance_with_http_info(project_key, environment_key, request_body, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ContextInstanceEvaluations>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->evaluate_context_instance_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
request_body | Hash<String, Object> | ||
limit | Integer | The number of feature flags to return. Defaults to -1, which returns all flags | [optional] |
offset | Integer | Where to start in the list. Use this with pagination. For example, an offset of 10 skips the first ten items and then returns the next items in the list, up to the query `limit`. | [optional] |
sort | String | A comma-separated list of fields to sort by. Fields prefixed by a dash ( - ) sort in descending order | [optional] |
filter | String | A comma-separated list of filters. Each filter is of the form `field operator value`. Supported fields are explained above. | [optional] |
- Content-Type: application/json
- Accept: application/json
get_context_attribute_names(project_key, environment_key, opts)
Get context attribute names
Get context attribute names.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
opts = {
filter: 'filter_example', # String | A comma-separated list of context filters. This endpoint only accepts `kind` filters, with the `equals` operator, and `name` filters, with the `startsWith` operator. To learn more about the filter syntax, read [Filtering contexts and context instances](/tag/Contexts#filtering-contexts-and-context-instances).
limit: 789 # Integer | Specifies the maximum number of items in the collection to return (max: 100, default: 100)
}
begin
# Get context attribute names
result = api_instance.get_context_attribute_names(project_key, environment_key, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_attribute_names: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_context_attribute_names_with_http_info(project_key, environment_key, opts)
begin
# Get context attribute names
data, status_code, headers = api_instance.get_context_attribute_names_with_http_info(project_key, environment_key, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ContextAttributeNamesCollection>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_attribute_names_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
filter | String | A comma-separated list of context filters. This endpoint only accepts `kind` filters, with the `equals` operator, and `name` filters, with the `startsWith` operator. To learn more about the filter syntax, read Filtering contexts and context instances. | [optional] |
limit | Integer | Specifies the maximum number of items in the collection to return (max: 100, default: 100) | [optional] |
ContextAttributeNamesCollection
- Content-Type: Not defined
- Accept: application/json
get_context_attribute_values(project_key, environment_key, attribute_name, opts)
Get context attribute values
Get context attribute values.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
attribute_name = 'attribute_name_example' # String | The attribute name
opts = {
filter: 'filter_example', # String | A comma-separated list of context filters. This endpoint only accepts `kind` filters, with the `equals` operator, and `value` filters, with the `startsWith` operator. To learn more about the filter syntax, read [Filtering contexts and context instances](/tag/Contexts#filtering-contexts-and-context-instances).
limit: 789 # Integer | Specifies the maximum number of items in the collection to return (max: 100, default: 50)
}
begin
# Get context attribute values
result = api_instance.get_context_attribute_values(project_key, environment_key, attribute_name, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_attribute_values: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_context_attribute_values_with_http_info(project_key, environment_key, attribute_name, opts)
begin
# Get context attribute values
data, status_code, headers = api_instance.get_context_attribute_values_with_http_info(project_key, environment_key, attribute_name, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ContextAttributeValuesCollection>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_attribute_values_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
attribute_name | String | The attribute name | |
filter | String | A comma-separated list of context filters. This endpoint only accepts `kind` filters, with the `equals` operator, and `value` filters, with the `startsWith` operator. To learn more about the filter syntax, read Filtering contexts and context instances. | [optional] |
limit | Integer | Specifies the maximum number of items in the collection to return (max: 100, default: 50) | [optional] |
ContextAttributeValuesCollection
- Content-Type: Not defined
- Accept: application/json
get_context_instances(project_key, environment_key, id, opts)
Get context instances
Get context instances by ID.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
id = 'id_example' # String | The context instance ID
opts = {
limit: 789, # Integer | Specifies the maximum number of context instances to return (max: 50, default: 20)
continuation_token: 'continuation_token_example', # String | Limits results to context instances with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead.
sort: 'sort_example', # String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`.
filter: 'filter_example', # String | A comma-separated list of context filters. This endpoint only accepts an `applicationId` filter. To learn more about the filter syntax, read [Filtering contexts and context instances](/tag/Contexts#filtering-contexts-and-context-instances).
include_total_count: true # Boolean | Specifies whether to include or omit the total count of matching context instances. Defaults to true.
}
begin
# Get context instances
result = api_instance.get_context_instances(project_key, environment_key, id, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_instances: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_context_instances_with_http_info(project_key, environment_key, id, opts)
begin
# Get context instances
data, status_code, headers = api_instance.get_context_instances_with_http_info(project_key, environment_key, id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ContextInstances>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_instances_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
id | String | The context instance ID | |
limit | Integer | Specifies the maximum number of context instances to return (max: 50, default: 20) | [optional] |
continuation_token | String | Limits results to context instances with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead. | [optional] |
sort | String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`. | [optional] |
filter | String | A comma-separated list of context filters. This endpoint only accepts an `applicationId` filter. To learn more about the filter syntax, read Filtering contexts and context instances. | [optional] |
include_total_count | Boolean | Specifies whether to include or omit the total count of matching context instances. Defaults to true. | [optional] |
- Content-Type: Not defined
- Accept: application/json
get_context_kinds_by_project_key(project_key)
Get context kinds
Get all context kinds for a given project.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
begin
# Get context kinds
result = api_instance.get_context_kinds_by_project_key(project_key)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_kinds_by_project_key: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_context_kinds_by_project_key_with_http_info(project_key)
begin
# Get context kinds
data, status_code, headers = api_instance.get_context_kinds_by_project_key_with_http_info(project_key)
p status_code # => 2xx
p headers # => { ... }
p data # => <ContextKindsCollectionRep>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_context_kinds_by_project_key_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key |
- Content-Type: Not defined
- Accept: application/json
get_contexts(project_key, environment_key, kind, key, opts)
Get contexts
Get contexts based on kind and key.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
kind = 'kind_example' # String | The context kind
key = 'key_example' # String | The context key
opts = {
limit: 789, # Integer | Specifies the maximum number of items in the collection to return (max: 50, default: 20)
continuation_token: 'continuation_token_example', # String | Limits results to contexts with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead.
sort: 'sort_example', # String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`.
filter: 'filter_example', # String | A comma-separated list of context filters. This endpoint only accepts an `applicationId` filter. To learn more about the filter syntax, read [Filtering contexts and context instances](/tag/Contexts#filtering-contexts-and-context-instances).
include_total_count: true # Boolean | Specifies whether to include or omit the total count of matching contexts. Defaults to true.
}
begin
# Get contexts
result = api_instance.get_contexts(project_key, environment_key, kind, key, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_contexts: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_contexts_with_http_info(project_key, environment_key, kind, key, opts)
begin
# Get contexts
data, status_code, headers = api_instance.get_contexts_with_http_info(project_key, environment_key, kind, key, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Contexts>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->get_contexts_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
kind | String | The context kind | |
key | String | The context key | |
limit | Integer | Specifies the maximum number of items in the collection to return (max: 50, default: 20) | [optional] |
continuation_token | String | Limits results to contexts with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead. | [optional] |
sort | String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`. | [optional] |
filter | String | A comma-separated list of context filters. This endpoint only accepts an `applicationId` filter. To learn more about the filter syntax, read Filtering contexts and context instances. | [optional] |
include_total_count | Boolean | Specifies whether to include or omit the total count of matching contexts. Defaults to true. | [optional] |
- Content-Type: Not defined
- Accept: application/json
put_context_kind(project_key, key, upsert_context_kind_payload)
Create or update context kind
Create or update a context kind by key. Only the included fields will be updated.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
key = 'key_example' # String | The context kind key
upsert_context_kind_payload = LaunchDarklyApi::UpsertContextKindPayload.new({name: 'organization'}) # UpsertContextKindPayload |
begin
# Create or update context kind
result = api_instance.put_context_kind(project_key, key, upsert_context_kind_payload)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->put_context_kind: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> put_context_kind_with_http_info(project_key, key, upsert_context_kind_payload)
begin
# Create or update context kind
data, status_code, headers = api_instance.put_context_kind_with_http_info(project_key, key, upsert_context_kind_payload)
p status_code # => 2xx
p headers # => { ... }
p data # => <UpsertResponseRep>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->put_context_kind_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
key | String | The context kind key | |
upsert_context_kind_payload | UpsertContextKindPayload |
- Content-Type: application/json
- Accept: application/json
search_context_instances(project_key, environment_key, context_instance_search, opts)
Search for context instances
Search for context instances. You can use either the query parameters or the request body parameters. If both are provided, there is an error. To learn more about the filter syntax, read Filtering contexts and context instances. To learn more about context instances, read Context instances.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
context_instance_search = LaunchDarklyApi::ContextInstanceSearch.new # ContextInstanceSearch |
opts = {
limit: 789, # Integer | Specifies the maximum number of items in the collection to return (max: 50, default: 20)
continuation_token: 'continuation_token_example', # String | Limits results to context instances with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead.
sort: 'sort_example', # String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`.
filter: 'filter_example', # String | A comma-separated list of context filters. This endpoint only accepts an `applicationId` filter. To learn more about the filter syntax, read [Filtering contexts and context instances](/tag/Contexts#filtering-contexts-and-context-instances).
include_total_count: true # Boolean | Specifies whether to include or omit the total count of matching context instances. Defaults to true.
}
begin
# Search for context instances
result = api_instance.search_context_instances(project_key, environment_key, context_instance_search, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->search_context_instances: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> search_context_instances_with_http_info(project_key, environment_key, context_instance_search, opts)
begin
# Search for context instances
data, status_code, headers = api_instance.search_context_instances_with_http_info(project_key, environment_key, context_instance_search, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ContextInstances>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->search_context_instances_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
context_instance_search | ContextInstanceSearch | ||
limit | Integer | Specifies the maximum number of items in the collection to return (max: 50, default: 20) | [optional] |
continuation_token | String | Limits results to context instances with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead. | [optional] |
sort | String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`. | [optional] |
filter | String | A comma-separated list of context filters. This endpoint only accepts an `applicationId` filter. To learn more about the filter syntax, read Filtering contexts and context instances. | [optional] |
include_total_count | Boolean | Specifies whether to include or omit the total count of matching context instances. Defaults to true. | [optional] |
- Content-Type: application/json
- Accept: application/json
search_contexts(project_key, environment_key, context_search, opts)
Search for contexts
Search for contexts. You can use either the query parameters or the request body parameters. If both are provided, there is an error. To learn more about the filter syntax, read Filtering contexts and context instances. To learn more about contexts, read Contexts and context kinds.
require 'time'
require 'launchdarkly_api'
# setup authorization
LaunchDarklyApi.configure do |config|
# Configure API key authorization: ApiKey
config.api_key['ApiKey'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['ApiKey'] = 'Bearer'
end
api_instance = LaunchDarklyApi::ContextsApi.new
project_key = 'project_key_example' # String | The project key
environment_key = 'environment_key_example' # String | The environment key
context_search = LaunchDarklyApi::ContextSearch.new # ContextSearch |
opts = {
limit: 789, # Integer | Specifies the maximum number of items in the collection to return (max: 50, default: 20)
continuation_token: 'continuation_token_example', # String | Limits results to contexts with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead.
sort: 'sort_example', # String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`.
filter: 'filter_example', # String | A comma-separated list of context filters. To learn more about the filter syntax, read [Filtering contexts and context instances](/tag/Contexts#filtering-contexts-and-context-instances).
include_total_count: true # Boolean | Specifies whether to include or omit the total count of matching contexts. Defaults to true.
}
begin
# Search for contexts
result = api_instance.search_contexts(project_key, environment_key, context_search, opts)
p result
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->search_contexts: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> search_contexts_with_http_info(project_key, environment_key, context_search, opts)
begin
# Search for contexts
data, status_code, headers = api_instance.search_contexts_with_http_info(project_key, environment_key, context_search, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Contexts>
rescue LaunchDarklyApi::ApiError => e
puts "Error when calling ContextsApi->search_contexts_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
project_key | String | The project key | |
environment_key | String | The environment key | |
context_search | ContextSearch | ||
limit | Integer | Specifies the maximum number of items in the collection to return (max: 50, default: 20) | [optional] |
continuation_token | String | Limits results to contexts with sort values after the value specified. You can use this for pagination, however, we recommend using the `next` link we provide instead. | [optional] |
sort | String | Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying `ts` for this value, or descending order by specifying `-ts`. | [optional] |
filter | String | A comma-separated list of context filters. To learn more about the filter syntax, read Filtering contexts and context instances. | [optional] |
include_total_count | Boolean | Specifies whether to include or omit the total count of matching contexts. Defaults to true. | [optional] |
- Content-Type: application/json
- Accept: application/json