v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Contexts

Get context attribute values

Get context attribute values.

get/api/v2/projects/{projectKey}/environments/{environmentKey}/context-attributes/{attributeName}

Path parameters

projectKeystring string required

The project key

The project key

environmentKeystring string required

The environment key

The environment key

attributeNamestring string required

The attribute name

The attribute name

Query parameters

filterstring 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.

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.

limitinteger

Specifies the maximum number of items in the collection to return (max: 100, default: 50)

Specifies the maximum number of items in the collection to return (max: 100, default: 50)

Response

Context attribute values collection response

Example response

{
  "items": [
    {
      "kind": "user",
      "values": [
        {
          "name": "Sandy",
          "weight": 35
        }
      ]
    }
  ]
}