Sync permissioned messages data with Telnyx through Apideck's unified API. One integration, instant access to the governed data your team needs.
Create, Get operations available through our unified API
Fields available for Telnyx Messages
idfromtosubjectbodytypenumber_of_unitsdirectionsent_atwebhook_urlmessaging_service_idSample response structure for messages
{
"id": "12345",
"from": "string",
"to": "string",
"subject": "string",
"body": "string",
"type": "standard",
"number_of_units": 10,
"direction": "string",
"sent_at": "2024-01-15T10:30:00.000Z",
"webhook_url": "https://example.com",
"messaging_service_id": "12345"
}Start syncing Telnyx 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 Telnyx
const result = await apideck.sms.messages.list({
serviceId: 'telnyx'
})
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 Telnyx integrations in your favorite language with our official SDKs.
Build Telnyx integrations with the official Node.js SDK.
Build Telnyx integrations with the official TypeScript SDK.
Build Telnyx integrations with the official PHP SDK.
Build Telnyx integrations with the official .NET.
Build Telnyx integrations with the official Python SDK.
Build Telnyx integrations with the official Java SDK.
Build Telnyx integrations with the official Go SDK.