Project APIExperiments (V2)
List observed context properties
Custom targeting context property names and types recently seen in this environment's evaluation traffic, most recent first. Powers the composer's property autocomplete so an author can see what the SDK already sends, and as what type. Observation is a suggestion — the type declared on a condition remains the contract. Names and types only; context values are never recorded.
Authorization
personalAccessTokenAuth AuthorizationBearer <token>
Personal access token (prefixed gb_pat_). Acts on behalf of its owner and can never exceed the owner's own permissions. Send it as Authorization: Bearer <token>.
In: header
Path Parameters
applicationId*number
Gamebeast project ID
Query Parameters
limit?integer
Range
1 <= value <= 500Default
100Header Parameters
environment_id*number
Gamebeast environment ID
Response Body
application/json
curl -X GET "https://example.com/application/0/v2/experiments/context-properties" \ -H "environment_id: 0"{ "items": [ { "name": "string", "valueType": "string", "observationCount": 0, "lastSeenAt": "2019-08-24T14:15:22Z" } ]}