---
title: "Get subscription eligibility for a user"
method: GET
path: "/subscriptions"
tags: ["Subscribers"]
---

# Get subscription eligibility for a user

`GET /subscriptions`

Make a call to this endpoint to list all subscription types and channels a user is subscribed to. You can query for a subscriber using either their phone number or email. One of the query parameters is required in order to look up a subscriber. As an example, you can use this endpoint to check if a subscriber is eligible to receive SMS or email campaigns, and then send them a message based on that eligibility.

## Query parameters

- `phone` string
- `email` string

## Response `200`

Successfully accepted get subscriptions request

- GetSubscriptionsResponseDto — A list of the subscriptions that a subscriber is eligible to receive messages for.
  - `subscriptionEligibilities` SubscriptionEligibilityDto[]
    - `subscription` SubscriptionDto — A type and channel combination.
      - `type` 'MARKETING' | 'TRANSACTIONAL' | 'CHECKOUT_ABANDONED'
      - `channel` 'TEXT' | 'EMAIL'
    - `eligibility` EligibilityDto — A user's eligibility to receive messages for a subscription.
      - `isEligible` boolean — A boolean representing a user's eligibility to receive messages for a subscription.

## Other responses

- `400` — Invalid parameter in request query or body
- `401` — Unauthorized
- `403` — Access Denied
- `404` — The specified resource was not found
- `429` — The user has sent too many requests in a given amount of time
- `500` — Internal Server Error

---

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