Docs
Get Subscriptions
GET /subscriptions
GET
/subscriptionsReturns all active subscriptions for the authenticated user. A subscription represents the user's choice to follow a specific subject entity and receive notifications when events occur on it.
Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <token> | Optional | Authenticate via OAuth2 in Bruno. |
Response
Returns a list of subscription objects.
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique subscription ID. |
| userId | Guid | The subscribing user. |
| subjectType | string | Type of the subject being followed (e.g. Area, Task). |
| subjectId | Guid | ID of the subject entity. |
| organizationId | Guid | Organization context. |
| eventId | Guid| null | Event context. Null for org-level subscriptions. |
| status | string | Current subscription status (e.g. Active, Muted). |
| createdAt | DateTime | When the subscription was created. |
| updatedAt | DateTime | When the subscription was last modified. |