crisp-api 6.0.0 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/EXAMPLES.md +10 -0
- package/README.md +205 -189
- package/lib/crisp.js +1 -0
- package/lib/resources/WebsiteConversation.js +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/EXAMPLES.md
CHANGED
|
@@ -137,6 +137,16 @@ CrispClient.website.updateMessageInConversation(websiteID, sessionID, fingerprin
|
|
|
137
137
|
|
|
138
138
|
=========================
|
|
139
139
|
|
|
140
|
+
https://docs.crisp.chat/references/rest-api/v1/#remove-a-message-in-conversation
|
|
141
|
+
|
|
142
|
+
var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
|
|
143
|
+
var sessionID = "session_700c65e1-85e2-465a-b9ac-ecb5ec2c9881";
|
|
144
|
+
var fingerprint = 524653764345;
|
|
145
|
+
|
|
146
|
+
CrispClient.website.removeMessageInConversation(websiteID, sessionID, fingerprint);
|
|
147
|
+
|
|
148
|
+
=========================
|
|
149
|
+
|
|
140
150
|
https://docs.crisp.chat/references/rest-api/v1/#compose-a-message-in-conversation
|
|
141
151
|
|
|
142
152
|
var websiteID = "8c842203-7ed8-4e29-a608-7cf78a7d2fcc";
|