GET
/
console
/
v1
/
gates
/
{id}
/
rules
/
{ruleID}
/
pulse_load_history
curl --request GET \
  --url https://statsigapi.net/console/v1/gates/{id}/rules/{ruleID}/pulse_load_history \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "<string>",
  "data": [
    {
      "creatorName": "<string>",
      "createdTime": 123,
      "finishedTime": 123,
      "finishedState": "success",
      "startDs": "<string>",
      "endDs": "<string>",
      "reloadType": "incremental",
      "turboMode": true
    }
  ],
  "pagination": {
    "itemsPerPage": 123,
    "pageNumber": 123,
    "nextPage": "<string>",
    "previousPage": "<string>",
    "totalItems": 123,
    "all": "<string>"
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Path Parameters

id
string
required

Gate ID

ruleID
string
required

Rule ID

Query Parameters

limit
integer

Results per page

Example:

10

page
integer

Page number

Example:

1

Response

200 - application/json

List Pulse Load History

The response is of type object.