subscriptions_list
Retrieve all subscriptions for a project, with pagination and optional filters by tags or user IDs.
Instructions
To list all subscriptions in your project,
send a GET request to /projects/PROJECT_ID/subscriptions.
The response body will be an array containing objects each representing a subscription.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | If you have many subscriptions they get paginated and you need to retrieve them with multiple requests. | |
| tags[] | No | Filter subscriptions by tags. Subscriptions that have at least one of these tags associated are returned. Instead of simple tags, you can also use boolean expressions for tags, for example: `(tag1 && tag2) || !tag3`. | |
| uids[] | No | Filter subscriptions by user ID. Subscriptions that have one of these uids associated are returned. | |
| per_page | No | The number of subscriptions per page. | |
| project_id | Yes | The ID of a project. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |