Get context instances
Get context instances by ID.
Path parameters
The project key
The project key
The environment key
The environment key
The context instance ID
The context instance ID
Query parameters
Specifies the maximum number of context instances to return (max: 50, default: 20)
Specifies the maximum number of context instances to return (max: 50, default: 20)
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.
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.
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.
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.
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.
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.
Specifies whether to include or omit the total count of matching context instances. Defaults to true.
Specifies whether to include or omit the total count of matching context instances. Defaults to true.
Response
Context instances collection response
Example response
{
"_links": {
"next": {
"href": "/api/v2/projects/my-project/environments/my-env/context-instances/organization:launch-darkly:user:henry?limit=2&continuationToken=2022-04-15T15:00:57.526470334Z",
"type": "application/json"
},
"self": {
"href": "/api/v2/projects/my-proj/environments/my-env/context-instances/organization:launch-darkly:user:henry-jacobs?limit=2",
"type": "application/json"
}
},
"totalCount": 100,
"_environmentId": "57be1db38b75bf0772d11384",
"continuationToken": "QAGFKH1313KUGI2351",
"items": [
{
"lastSeen": "2022-04-15T15:00:57.526470334Z",
"id": "b3JnOmxhdW5jaGRhcmtseQ",
"applicationId": "GoSDK/1.2",
"anonymousKinds": [
"device",
"privateKind"
],
"context": "{\"kind\": \"user\", \"key\": \"context-key-123abc\", \"name\": \"Sandy Smith\", \"email\": \"sandy@example.com\"}",
"_links": {
"parent": {
"href": "/api/v2/projects/my-project/environments/my-environment",
"type": "application/json"
},
"self": {
"href": "/api/v2/projects/my-project/environments/my-env/context-instances/organization:launch-darkly:user:henry?filter=applicationId:\"GoSDK/1.2\"",
"type": "application/json"
},
"site": {
"href": "/my-project/my-environment/context-instances/organization:launch-darkly:user:henry",
"type": "text/html"
}
},
"_access": {
"denied": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
],
"allowed": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
]
}
}
]
}