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