---
title: "List subscriptions for the current user"
method: GET
path: "/customers/my-subscriptions"
tags: ["Subscriptions"]
---

# List subscriptions for the current user

`GET /customers/my-subscriptions`

Lists the authenticated user's `Subscription`s. A `Subscription` is the user's opt-in
to receive a particular notification (e.g. failed payment, expiring membership) for a
specific `Site`.

## Query parameters

- `site_id` string

## Response `200`

The subscriptions were successfully retrieved.

- object
  - `data` Subscription[], required
    - `id` string, uuid, required — The ID of the subscription
    - `site_id` string, uuid, required — The site ID which this subscription relates to
    - `notification_type` 'failed_payments' | 'expiring_soon' | 'new_signups' | 'revoked_mandate', required — The type of notification this subscription is for
    - `created_at` string, date-time, required — The date-time when this subscription was created
    - `updated_at` string, date-time, required — The date-time when this subscription was last updated
  - `meta` PaginationMeta — Counts and positional information for the current page of a list response. Use `current_page` and `last_page` to drive pagination UI, `total` for result counts, and `per_page` to confirm the page size the server actually applied (which may differ from the requested value when capped).
    - `from` integer, required — The item number from which this results set starts from
    - `to` integer, required — The item number from which this results set ends at
    - `total` integer, required — The total number of results
    - `current_page` integer, required — The current page number
    - `last_page` integer, required — The page number of the last result set
    - `per_page` integer, required — The number of results per page
    - `path` string, required — The path of this api request

## Other responses

- `401` — The user is unauthenticated

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
