Get subscription history

GET
/sdk/v1/subscriptions/{subscriptionId}/history
Authorization<token>

Bearer token authentication for client-side SDK operations. Format: 'Authorization: Bearer '

In: header

Path Parameters

subscriptionIdstring

Query Parameters

segmentId?string

Response Body

curl -X GET "https://test-api.stash.gg/sdk/v1/subscriptions/string/history?segmentId=string"
{
  "events": [
    {
      "eventType": "string",
      "timestamp": "2019-08-24T14:15:22Z",
      "details": "string"
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string",
      "property1": null,
      "property2": null
    }
  ]
}

How is this guide?