...
If so, should we point them to staging or prod? If we point them to staging, they will see the new thread, but may be confused between staging and prod. If we point them to prod, they will not be able to see the new thread and may think that Synapse is broken.
Models
API
Action | Intended User | URI | Method | Request Params | Request Body | Response Body | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | subscribe to an object | Synapse users who has READ permission on the object | /subscriptions | POST | Subscription | Subscription | |||||||||
2 | retrieve | all subscriptionsSynapse users | /subscriptions | GET | limit, offset | SubscriptionPage | 3 | retrieve a subscription for a single objectfor a list of objects | Synapse users | /subscriptions/{objectId}/type/{objectType} | PUT | List<Topic> | SubscriptionPage | ||
43 | unsubscribe to an object | Synapse users who subscribed to the object | /subscriptions/unsubscribe/{objectId}/type/{objectType} | DELETE | |||||||||||
5 | change notification method | Synapse users who subscribed to the object | /subscriptions | PUT | Subscription | Subscription | |||||||||
6 | get all notifications | Synapse users | /notifications | GET | filter(NO_FILTER, UNREAD_ONLY), eventType, limit, offset | NotificationPage | |||||||||
7 | mark a notification as read | Synapse users | /notifications/{notificationId}/read | PUT | Notification | ||||||||||
8 | get event | Synapse users | /events/{eventId}/type/{eventType} | GET | Event |