Skip to content

Latest commit

 

History

History
67 lines (58 loc) · 2.4 KB

File metadata and controls

67 lines (58 loc) · 2.4 KB

List Subscription Events Response

Defines output parameters in a response from the ListSubscriptionEvents.

Structure

ListSubscriptionEventsResponse

Fields

Name Type Tags Description
errors Error[] | undefined Optional Errors encountered during the request.
subscriptionEvents SubscriptionEvent[] | undefined Optional The retrieved subscription events.
cursor string | undefined Optional When the total number of resulting subscription events exceeds the limit of a paged response,
the response includes a cursor for you to use in a subsequent request to fetch the next set of events.
If the cursor is unset, the response contains the last page of the results.

For more information, see Pagination.

Example (as JSON)

{
  "subscription_events": [
    {
      "effective_date": "2020-04-24",
      "id": "06809161-3867-4598-8269-8aea5be4f9de",
      "plan_id": "6JHXF3B2CW3YKHDV4XEM674H",
      "subscription_event_type": "START_SUBSCRIPTION"
    },
    {
      "effective_date": "2020-05-01",
      "id": "f2736603-cd2e-47ec-8675-f815fff54f88",
      "info": {
        "code": "CUSTOMER_NO_NAME",
        "detail": "The customer with ID `V74BMG0GPS2KNCWJE1BTYJ37Y0` does not have a name on record."
      },
      "plan_id": "6JHXF3B2CW3YKHDV4XEM674H",
      "subscription_event_type": "DEACTIVATE_SUBSCRIPTION"
    },
    {
      "effective_date": "2022-05-01",
      "id": "b426fc85-6859-450b-b0d0-fe3a5d1b565f",
      "plan_id": "6JHXF3B2CW3YKHDV4XEM674H",
      "subscription_event_type": "RESUME_SUBSCRIPTION"
    },
    {
      "effective_date": "2022-05-02",
      "id": "09f14de1-2f53-4dae-9091-49aa53f83d01",
      "plan_id": "6JHXF3B2CW3YKHDV4XEM674H",
      "subscription_event_type": "PAUSE_SUBSCRIPTION"
    },
    {
      "effective_date": "2020-05-02",
      "id": "f28a73ac-1a1b-4b0f-8eeb-709a72945776",
      "plan_id": "6JHXF3B2CW3YKHDV4XEM674H",
      "subscription_event_type": "RESUME_SUBSCRIPTION"
    },
    {
      "effective_date": "2020-05-06",
      "id": "a0c08083-5db0-4800-85c7-d398de4fbb6e",
      "plan_id": "6JHXF3B2CW3YKHDV4XEM674H",
      "subscription_event_type": "STOP_SUBSCRIPTION"
    }
  ]
}