Split · Example Payload

Split List Feature Flags Example

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Split List Feature Flags Example is an example object payload from Split, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.split.io/internal/api/v2/splits/ws/wrksp_abc123?limit=20&offset=0",
    "headers": {
      "Authorization": "Bearer {SPLIT_ADMIN_API_KEY}"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "objects": [
        {
          "name": "checkout_v2",
          "description": "New checkout flow rollout",
          "trafficType": {
            "id": "tt_user",
            "name": "user"
          },
          "creationTime": 1700000000000,
          "tags": [
            {"name": "checkout"},
            {"name": "ecommerce"}
          ]
        }
      ],
      "offset": 0,
      "limit": 20,
      "totalCount": 1
    }
  }
}