Warning
You are viewing the technical documentation for Sharetribe. If you are looking for our no-code documentation, see our new help center.

Last updated

Messages

Sharetribe allows your users to communicate with each other using messages. This article introduces the concept of messages and how to access messages through Zapier.

Table of Contents

What are messages?

Messages let your users communicate with other users in your marketplace. They can be exchanged freely between a customer and a provider once they have engaged in a transaction. Messages always need to be associated with a transaction and can not be sent outside of one.

The default booking and purchase transaction processes include an inquiry transition, which initiates a transaction without running any actions, allowing the provider and customer to send messages to each other. In addition, the default-inquiry process initiates a simple transaction that is only intended for messaging.

Note that messages do not alter the transaction or transition it to a different state.

Sending messages

You can send messages using the send message endpoint, which requires an authenticated user’s access token to call. The Integration API does not offer an endpoint to send messages, and therefore, only authenticated users can send messages through the Marketplace API.

Querying messages

You can query messages through the query messages endpoint, which returns all messages in a given transaction. Messages can also be included as a relationship when querying transactions.

Email notifications

New messages trigger a built-in email notification sent to the receiving party of the message. You can edit built-in email notification content through Console > Build > Content > Email texts, and you can modify the structure and code of the notifications through Console.

Zapier, events and messages

Using Zapier you can connect your marketplace with other web applications and create automated workflows.

Even though you can’t listen for new messages through Zapier, messages can easily be retrieved as a transaction relationship. For more complex customisations, you can use events to listen to new or deleted messages.

How to retrieve messages in Zapier

You can use Zapier to access messages using the transaction ID that is associated with them. By default, when you listen to transaction events, the message relationship is not included. To include the message relationship, add the action "Show Transaction" to the trigger "Transaction events" and select messages from the dropdown menu.

From the dropdown menu, you can select messages, and you are then able to use the message content in your Zap.

Events and messages

Listening to events through the Integration API is the most versatile way to react to what is happening in your marketplace. As sending new messages does not affect transaction state or transitions, you can’t use Zapier to detect new messages as it can only react to transactions, listing and user events. Events allow you to listen to created messages and react directly to them. See how to react to events and the Integration API example script repository if you’re unsure where to start building your integration.

Message notifications in Sharetribe Web Template

By default, Sharetribe Web Template renders a notification symbol when the provider has transactions that require action, i.e. transactions that require acceptance of a booking request.

Notification symbol

This is how the default logic works:

  1. A query is made that retrieves all sales transactions (i.e. transactions where the current user is the provider) transactions that are in a state that requires provider attention
  2. The amount of sales transactions determines the notification count shown in the badge.

The variable currentUserNotificationCount stores the number of active notifications.

You can extend the messaging logic in many ways. For example, a common customisation is to display a notification every time a user receives a new message. To achieve this, you could change the logic behind currentUserNotificationCount to display a number stored in extended data. The data attribute would represent the number of unread messages, and could be updated every time a new message is detected using events.