---
title: "List user subscriptions"
method: GET
path: "/v1/users/{user_id}/subscriptions"
tags: ["Subscriptions", "Users"]
---

# List user subscriptions

`GET /v1/users/{user_id}/subscriptions`

Retrieves a paginated list of subscriptions for a specific user, in descending order.

## Path parameters

- `user_id` string, required

## Query parameters

- `include[]` string[]
- `objects[]` RecipientReference[]
  - union — A reference to a recipient, either a user identifier (string) or an object reference (ID, collection).
    - string — The ID of the user which is used as the reference for the recipient.
    - object — A reference to a recipient object.
      - `collection` string — The collection the recipient object belongs to.
      - `id` string — An identifier for the recipient object.
- `after` string
- `before` string
- `page_size` integer

## Response `200`

OK

- ListSubscriptionsResponse — A response containing a list of subscriptions.
  - `entries` Subscription[], required — A list of subscriptions.
    - `__typename` string, required — The typename of the schema.
    - `inserted_at` string, date-time, required — Timestamp when the resource was created.
    - `object` Object, required — A custom [Object](/concepts/objects) entity which belongs to a collection.
      - `__typename` string, required — The typename of the schema.
      - `collection` string, required — The collection this object belongs to.
      - `created_at` string, date-time, nullable — Timestamp when the resource was created.
      - `id` string, required — Unique identifier for the object.
      - `properties` object — The custom properties associated with the object.
      - `updated_at` string, date-time, required — The timestamp when the resource was last updated.
    - `properties` object, nullable — The custom properties associated with the subscription relationship.
    - `recipient` union, required — A recipient of a notification, which is either a user or an object.
      - object — A [User](/concepts/users) represents an individual in your system who can receive notifications through Knock. Users are the most common recipients of notifications and are always referenced by your internal identifier.
        - `__typename` string, required — The typename of the schema.
        - `avatar` string, nullable — A URL for the avatar of the user.
        - `created_at` string, date-time, nullable — The creation date of the user from your system.
        - `email` string, nullable — The primary email address for the user.
        - `id` string, required — The unique identifier of the user.
        - `name` string, nullable — Display name of the user.
        - `phone_number` string, nullable — The [E.164](https://www.twilio.com/docs/glossary/what-e164) phone number of the user (required for SMS channels).
        - `timezone` string, nullable — The timezone of the user. Must be a valid [tz database time zone string](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). Used for [recurring schedules](/concepts/schedules#scheduling-workflows-with-recurring-schedules-for-recipients).
        - `updated_at` string, date-time, required — The timestamp when the resource was last updated.
      - object — A custom [Object](/concepts/objects) entity which belongs to a collection.
        - `__typename` string, required — The typename of the schema.
        - `collection` string, required — The collection this object belongs to.
        - `created_at` string, date-time, nullable — Timestamp when the resource was created.
        - `id` string, required — Unique identifier for the object.
        - `properties` object — The custom properties associated with the object.
        - `updated_at` string, date-time, required — The timestamp when the resource was last updated.
    - `updated_at` string, date-time, required — The timestamp when the resource was last updated.
  - `page_info` PageInfo, required — Pagination information for a list of resources.
    - `__typename` string, required — The typename of the schema.
    - `after` string, nullable — The cursor to fetch entries after.
    - `before` string, nullable — The cursor to fetch entries before.
    - `page_size` integer, required — The number of items per page (defaults to 50).

---

[API](https://skmtc.net/knocklabs/apis/knock-api.md) · [All operations](https://skmtc.net/knocklabs/apis/knock-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/knocklabs/knock-api/revisions/4b8499dddbc5/schema)
