S
S
Socialboards
Search
K
Comment on page

Webhooks

Webhooks allows you to receive real-time HTTP notifications of changes to specific objects in Socialboards. For example, we could send you a notification when new ticket comes into the system or whenever they reply came to the existing ticket. This prevents you from having to query the API for changes that may or may not have happened.
Make sure you have the appropriate legal basis to collect and process client data before using webhooks.

Objects and Events

There are many types of objects in the Socialboards, such as Ticket objects and Reply objects, so whenever you configure a Webhook you must first choose an object type. Different objects support different events, so make sure you subscribe to events for that object type. Whenever such an event happens, we'll send you a notification.
Notifications are sent to you as HTTP POST requests and contain a JSON payload for that event. For example, let's say you set up a “Ticket” Webhook and subscribed to “Status changed” event. If the ticket’s status is changed from “pending” to “open”, we'll send you a notification that would look like this:
1
{
2
"CommunityName": "yourCompany",
3
"EventType": "ticket_status_change",
4
"TicketId": 4478963
5
"Events": [
6
{
7
"InboxLink": "https://inbox.socialboards.com/yourCompany/tickets?ticketId=4478963",
8
"PreviousTicketStatus": "open",
9
"Ticket": {
10
"Author": {
11
"Id": "35692164-bfaa-4c49-a23c-ecfa618f7d20",
12
"Name": "Robert Baker",
13
"Image": null,
14
"Email": "[email protected]",
15
"Status": "client",
16
"IsBot": false
17
},
18
"Category": {
19
"Id": 15721,
20
"Name": "Other cases",
21
"Parents": []
22
},
23
"CreationTime": "2019-12-17T08:03:48.318717+01:00",
24
"DetailedSource": "web_website",
25
"Id": 4478963,
26
"LastThreadElementCreationTime": "2019-12-17T08:10:03.8181291+01:00",
27
"LockedBy": null,
28
"Message": "I want to take my cat to a vet",
29
"OriginalLink": null,
30
"Properties": {
31
"IsAnonymized": false,
32
"IsMuted": false,
33
"HasAttachments": false,
34
"HasDraft": false,
35
"IsAssignedToBot": false,
36
"IsDeleted": false,
37
"IsExpired": false,
38
"IsHidden": false,
39
"IsLocked": false,
40
"IsSpam": false,
41
"IsSensitive": false
42
},
43
"ReplyCount": 1,
44
"Sentiment": "question",
45
"Source": "web",
46
"SourceName": null,
47
"Status": "pending",
48
"Title": "Cat is ill",
49
"HtmlMessage": "I want to take my cat to a vet"
50
},
51
"TicketId": 4478963
52
}
53
]
54
}
55

HTTPS Servers

Webhooks are sent using HTTPS, so your server must be able to receive and process HTTPS requests, and it must have a valid TLS/SSL certificate installed. Self-signed certificates are not supported.

Setup

To use Webhooks, you will need to set up an endpoint on a secure (HTTPS) server, then add and configure the Webhooks product in your inbox settings. The rest of these documents explain how to complete both of these steps.