Supported Operations for Twilio Messages

List, Create, Get, Delete operations available through our unified API

list
get
create
update
delete

Supported Fields

14 fields

Fields available for Twilio Messages

idfromtobodynumber_of_unitsnumber_of_media_filesdirectionstatussent_atwebhook_urlpricemessaging_service_idupdated_atcreated_at

API Model Preview

Sample response structure for messages

{
  "id": "12345",
  "from": "string",
  "to": "string",
  "body": "string",
  "number_of_units": 10,
  "number_of_media_files": 10,
  "direction": "string",
  "status": "active",
  "sent_at": "2024-01-15T10:30:00.000Z",
  "webhook_url": "https://example.com",
  "price": 100,
  "messaging_service_id": "12345",
  "updated_at": "2024-01-15T10:30:00.000Z",
  "created_at": "2024-01-15T10:30:00.000Z"
}

Quick Start Example

Start syncing Twilio messages in minutes

Node.js
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 Twilio
const result = await apideck.sms.messages.list({
  serviceId: 'twilio'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified messages data

Other connectors with Messages support

We 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.

Includes 2,500 free API calls

Twilio SDKs

Build Twilio integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up