Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions docsrc/markdown/application_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@

The Application Service is a component at the service layer of the BDK which aims to cover the Applications part of the [REST API documentation](https://developers.symphony.com/restapi/reference).
More precisely:
* [Create application](https://developers.symphony.com/restapi/reference#create-app)
* [Create application with an RSA public key](https://developers.symphony.com/restapi/reference#create-application-with-an-rsa-public-key)
* [Update application](https://developers.symphony.com/restapi/reference#update-application)
* [Update application with an RSA public key](https://developers.symphony.com/restapi/reference#update-application-with-an-rsa-public-key)
* [Delete application](https://developers.symphony.com/restapi/reference#delete-application)
* [Get application](https://developers.symphony.com/restapi/reference#get-application)
* [List application entitlements](https://developers.symphony.com/restapi/reference#list-app-entitlements)
* [Update application entitlements](https://developers.symphony.com/restapi/reference#update-application-entitlements)
* [List user applications](https://developers.symphony.com/restapi/reference#user-apps)
* [Update user applications](https://developers.symphony.com/restapi/reference#update-user-apps)
* [Patch user applications](https://developers.symphony.com/restapi/reference/partial-update-user-apps)
* [Create application](https://rest-api.symphony.com/main/manage-apps/create-app)
* [Update application](https://rest-api.symphony.com/main/manage-apps/update-application)
* [Delete application](https://rest-api.symphony.com/main/manage-apps/delete-application)
* [Get application](https://rest-api.symphony.com/main/manage-apps/get-application)
* [List application entitlements](https://rest-api.symphony.com/main/apps-entitlements/list-app-entitlements)
* [Update application entitlements](https://rest-api.symphony.com/main/apps-entitlements/update-application-entitlements)
* [List user applications](https://rest-api.symphony.com/main/apps-entitlements/user-apps)
* [Update user applications](https://rest-api.symphony.com/main/apps-entitlements/update-user-apps)
* [Patch user applications](https://rest-api.symphony.com/main/apps-entitlements/partial-update-user-apps)


## How to use
Expand Down
12 changes: 6 additions & 6 deletions docsrc/markdown/connection_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

The Connection Service is a component at the service layer of the BDK which aims to cover the Connections part of the [REST API documentation](https://developers.symphony.com/restapi/reference).
More precisely:
* [Get connection](https://developers.symphony.com/restapi/reference#get-connection)
* [List connections](https://developers.symphony.com/restapi/reference#list-connections)
* [Create connection](https://developers.symphony.com/restapi/reference#create-connection)
* [Accept connection](https://developers.symphony.com/restapi/reference#accepted-connection)
* [Reject connection](https://developers.symphony.com/restapi/reference#reject-connection)
* [Remove connection](https://developers.symphony.com/restapi/reference#remove-connection)
* [Get connection](https://rest-api.symphony.com/main/connections/get-connection)
* [List connections](https://rest-api.symphony.com/main/connections/list-connections)
* [Create connection](https://rest-api.symphony.com/main/connections/create-connection)
* [Accept connection](https://rest-api.symphony.com/main/connections/accepted-connection)
* [Reject connection](https://rest-api.symphony.com/main/connections/reject-connection)
* [Remove connection](https://rest-api.symphony.com/main/connections/remove-connection)


## How to use
Expand Down
28 changes: 14 additions & 14 deletions docsrc/markdown/message_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

The Message Service is a component at the service layer of the BDK which aims to cover the Messages part of the [REST API documentation](https://developers.symphony.com/restapi/reference#messages-v4).
More precisely:
* [Get a message](https://developers.symphony.com/restapi/reference#get-message-v1)
* [Get messages](https://developers.symphony.com/restapi/reference#messages-v4)
* [Get message IDs by timestamp](https://developers.symphony.com/restapi/reference#get-message-ids-by-timestamp)
* [Search messages](https://developers.symphony.com/restapi/reference#message-search-post)
* [Send message](https://developers.symphony.com/restapi/reference#create-message-v4)
* [Update message](https://developers.symphony.com/restapi/reference#update-message-v4)
* [Import messages](https://developers.symphony.com/restapi/reference#import-message-v4)
* [Get attachment](https://developers.symphony.com/restapi/reference#attachment)
* [List attachments](https://developers.symphony.com/restapi/reference#list-attachments)
* [Get allowed attachment types](https://developers.symphony.com/restapi/reference#attachment-types)
* [Suppress message](https://developers.symphony.com/restapi/reference#suppress-message)
* [Get message status](https://developers.symphony.com/restapi/reference#message-status)
* [Get message receipts](https://developers.symphony.com/restapi/reference#list-message-receipts)
* [Get message relationships](https://developers.symphony.com/restapi/reference#message-metadata-relationship)
* [Get a message](https://rest-api.symphony.com/main/messages/get-message-v1)
* [Get messages](https://rest-api.symphony.com/main/messages/messages-v4)
* [Get message IDs by timestamp](https://rest-api.symphony.com/deprecated-endpoints/get-message-ids-by-timestamp)
* [Search messages](https://rest-api.symphony.com/main/messages/message-search-post)
* [Send message](https://rest-api.symphony.com/main/messages/create-message-v4)
* [Update message](https://rest-api.symphony.com/main/messages/update-message-v4)
* [Import messages](https://rest-api.symphony.com/main/messages/import-message-v4)
* [Get attachment](https://rest-api.symphony.com/main/messages/attachment)
* [List attachments](https://rest-api.symphony.com/main/messages/list-attachments)
* [Get allowed attachment types](https://rest-api.symphony.com/main/messages/attachment-types)
* [Suppress message](https://rest-api.symphony.com/main/messages/suppress-message)
* [Get message status](https://rest-api.symphony.com/main/messages/message-status)
* [Get message receipts](https://rest-api.symphony.com/main/messages/list-message-receipts)
* [Get message relationships](https://rest-api.symphony.com/main/messages/message-metadata-relationship)

## How to use
The central component for the Message Service is the `MessageService` class.
Expand Down
18 changes: 9 additions & 9 deletions docsrc/markdown/presence_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

The Presence Service is a component at the service layer of the BDK which covers the Presence part of the [REST API documentation](https://developers.symphony.com/restapi/reference).
More precisely:
* [Get presence](https://developers.symphony.com/restapi/reference#get-presence)
* [Get All Presence](https://developers.symphony.com/restapi/reference#get-all-presence)
* [Get User Presence](https://developers.symphony.com/restapi/reference#user-presence-v3)
* [External Presence Interest](https://developers.symphony.com/restapi/reference#register-user-presence-interest)
* [Set Presence](https://developers.symphony.com/restapi/reference#set-presence)
* [Create Presence Feed](https://developers.symphony.com/restapi/reference#create-presence-feed)
* [Read Presence Feed](https://developers.symphony.com/restapi/reference#read-presence-feed)
* [Delete Presence Feed](https://developers.symphony.com/restapi/reference#delete-presence-feed)
* [Set Other User's Presence](https://developers.symphony.com/restapi/reference#set-user-presence)
* [Get presence](https://rest-api.symphony.com/main/presence/get-presence)
* [Get All Presence](https://rest-api.symphony.com/main/presence/get-all-presence)
* [Get User Presence](https://rest-api.symphony.com/main/presence/user-presence-v3)
* [External Presence Interest](https://rest-api.symphony.com/main/presence/register-user-presence-interest)
* [Set Presence](https://rest-api.symphony.com/main/presence/set-presence)
* [Create Presence Feed](https://rest-api.symphony.com/main/presence/create-presence-feed)
* [Read Presence Feed](https://rest-api.symphony.com/main/presence/read-presence-feed)
* [Delete Presence Feed](https://rest-api.symphony.com/main/presence/delete-presence-feed)
* [Set Other User's Presence](https://rest-api.symphony.com/main/presence/set-user-presence)


## How to use
Expand Down
16 changes: 8 additions & 8 deletions docsrc/markdown/signal_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

The Signal Service is a component at the service layer of the BDK which aims to cover the Signal part of the [REST API documentation](https://developers.symphony.com/restapi/reference).
More precisely:
* [List signals](https://developers.symphony.com/restapi/reference#list-signals)
* [Get a signal](https://developers.symphony.com/restapi/reference#get-signal)
* [Create a signal](https://developers.symphony.com/restapi/reference#create-signal)
* [Update a signal](https://developers.symphony.com/restapi/reference#update-signal)
* [Delete a signal](https://developers.symphony.com/restapi/reference#delete-signal)
* [Subscribe Signal](https://developers.symphony.com/restapi/reference#subscribe-signal)
* [Unsubscribe Signal](https://developers.symphony.com/restapi/reference#unsubscribe-signal)
* [Subscribers](https://developers.symphony.com/restapi/reference#subscribers)
* [List signals](https://rest-api.symphony.com/main/signals/list-signals)
* [Get a signal](https://rest-api.symphony.com/main/signals/get-signal)
* [Create a signal](https://rest-api.symphony.com/main/signals/create-signal)
* [Update a signal](https://rest-api.symphony.com/main/signals/update-signal)
* [Delete a signal](https://rest-api.symphony.com/main/signals/delete-signal)
* [Subscribe Signal](https://rest-api.symphony.com/main/signals/subscribe-signal)
* [Unsubscribe Signal](https://rest-api.symphony.com/main/signals/unsubscribe-signal)
* [Subscribers](https://rest-api.symphony.com/main/signals/subscribers)


## How to use
Expand Down
37 changes: 19 additions & 18 deletions docsrc/markdown/stream_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,25 @@

The Stream Service is a component at the service layer of the BDK which aims to cover the Streams part of the [REST API documentation](https://developers.symphony.com/restapi/reference#messages-v4).
More precisely:
* [Get stream information](https://developers.symphony.com/restapi/reference#stream-info-v2)
* [Add a member to an existing room](https://developers.symphony.com/restapi/reference#add-member)
* [Remove a member from a room](https://developers.symphony.com/restapi/reference#remove-member)
* [Share third-party content](https://developers.symphony.com/restapi/reference#share-v3)
* [Promote user to room owner](https://developers.symphony.com/restapi/reference#promote-owner)
* [Demote owner to room participant](https://developers.symphony.com/restapi/reference#demote-owner)
* [Create IM or MIM](https://developers.symphony.com/restapi/reference#create-im-or-mim)
* [Create IM or MIM non-inclusive](https://developers.symphony.com/restapi/reference#create-im-or-mim-admin)
* [Create room](https://developers.symphony.com/restapi/reference#create-room-v3)
* [Search for rooms](https://developers.symphony.com/restapi/reference#search-rooms-v3)
* [Get room information](https://developers.symphony.com/restapi/reference#room-info-v3)
* [Deactivate or reactivate a room](https://developers.symphony.com/restapi/reference#de-or-re-activate-room)
* [Update a room](https://developers.symphony.com/restapi/reference#update-room-v3)
* [List streams](https://developers.symphony.com/restapi/reference#list-streams-for-enterprise-v2)
* [List user streams](https://developers.symphony.com/restapi/reference#list-user-streams)
* [List stream members](https://developers.symphony.com/restapi/reference#stream-members)
* [List room members](https://developers.symphony.com/restapi/reference#room-members)

* [Get stream information](https://rest-api.symphony.com/main/streams-conversations/all-streams-endpoints/stream-info-v2)
* [Add a member to an existing room](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/add-member)
* [Remove a member from a room](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/remove-member)
* [Share third-party content](https://rest-api.symphony.com/main/streams-conversations/all-streams-endpoints/share-v3)
* [Promote user to room owner](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/promote-owner)
* [Demote owner to room participant](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/demote-owner)
* [Create IM or MIM](https://rest-api.symphony.com/main/streams-conversations/im-mim-endpoints/create-im-or-mim)
* [Create IM or MIM non-inclusive](https://rest-api.symphony.com/main/streams-conversations/im-mim-endpoints/create-im-or-mim-admin)
* [Update IM or MIM](https://rest-api.symphony.com/main/streams-conversations/im-mim-endpoints/update-im)
* [Get IM information](https://rest-api.symphony.com/main/streams-conversations/im-mim-endpoints/im-info)
* [Create room](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/create-room-v3)
* [Search for rooms](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/search-rooms-v3)
* [Get room information](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/room-info-v3)
* [Deactivate or reactivate a room](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/de-or-re-activate-room)
* [Update a room](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/update-room-v3)
* [List streams](https://rest-api.symphony.com/main/streams-conversations/all-streams-endpoints/list-user-streams-admin)
* [List user streams](https://rest-api.symphony.com/main/streams-conversations/all-streams-endpoints/list-user-streams)
* [List stream members](https://rest-api.symphony.com/main/streams-conversations/all-streams-endpoints/stream-members)
* [List room members](https://rest-api.symphony.com/main/streams-conversations/room-endpoints/room-members)

## How to use
The central component for the Message Service is the `StreamService` class.
Expand Down
Loading