Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Image RemovedImage Added

API

 ActionIntended UserURIMethodRequest ParamsRequest BodyResponse Body
1subscribe to an objectSynapse users who has READ permission on the object/subscriptionsPOST SubscriptionSubscription
2retrieve all subscriptionsSynapse users /subscriptionsGETlimit, offset SubscriptionPage
3retrieve a single subscriptionSynapse users/subscriptions/{objectId}/type/{objectType}GET  Subscription
4unsubscribe to an objectSynapse users who subscribed to the object/subscriptions/unsubscribe/{objectId}/type/{objectType}DELETE   
5change notification methodSynapse users who subscribed to the object/subscriptionsPUT SubscriptionSubscription
6get all notificationsSynapse users/notificationsGETfilter(NO_FILTER, UNREAD_ONLY), limit, offset NotificationPage
7get all notifications for a single objectSynapse users/notifications/{objectId}/type/{objectType}GETlimit, offset NotificationPage
8mark a notification as readSynapse users/notifications/{notificationId}/readPUT   
9get eventSynapse users/events/{eventId}/type/{eventType}GET  Event

...