List Previous Conversations
In this code snippet you learn how to list the previous page of Conversations.
Example
Prerequisites
You will need to use an existing Application that contains Conversations in order to receive some results here. See the Create Conversation code snippet for information on how to create an Application and some sample Conversations.
npm install @vonage/server-sdk@beta
Create a file named list-prev-conversations.js
and add the following code:
const Vonage = require('@vonage/server-sdk')
const vonage = new Vonage({
apiKey: VONAGE_API_KEY,
apiSecret: VONAGE_API_SECRET,
applicationId: VONAGE_APPLICATION_ID,
privateKey: VONAGE_APPLICATION_PRIVATE_KEY_PATH
})
Write the code
Add the following to list-prev-conversations.js
:
vonage.conversations.get({}, (error, result) => {
if (error) {
console.error(error);
} else {
vonage.conversations.next(result, (error, result) => {
if (error) {
console.error(error);
} else {
vonage.conversations.prev(result, (error, result) => {
if (error) {
console.error(error);
} else {
console.log(result._embedded.data.conversations);
}
});
}
});
Run your code
Save this file to your machine and run it:
node list-prev-conversations.js
Try it out
When you run the code you will retrieve a list of the previous page of Conversations.