Sync messages data with Plivo through Apideck's unified API. One integration, instant access.
List, Create, Get operations available through our unified API
Fields available for Plivo Messages
idfromtotypenumber_of_unitsdirectionstatussent_atpriceSample response structure for messages
{
"id": "12345",
"from": "string",
"to": "string",
"type": "standard",
"number_of_units": 10,
"direction": "string",
"status": "active",
"sent_at": "2024-01-15T10:30:00.000Z",
"price": 100
}Start syncing Plivo messages in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List messages from Plivo
const result = await apideck.sms.messages.list({
serviceId: 'plivo'
})
for await (const page of result) {
console.log(page)
}
// Returns unified messages dataWe build and maintain connectors, so you don't have to. View our full list of SMS connectors.
Missing a connector? We're able to add new connectors.
Build Plivo integrations in your favorite language with our official SDKs.
Build Plivo integrations with the official Node.js SDK.
Build Plivo integrations with the official TypeScript SDK.
Build Plivo integrations with the official PHP SDK.
Build Plivo integrations with the official .NET.
Build Plivo integrations with the official Python SDK.
Build Plivo integrations with the official Java SDK.
Build Plivo integrations with the official Go SDK.