tools/integrations/attentive.md
Full-service SMS marketing platform for mid-market and enterprise direct-to-consumer brands. Combines tooling with dedicated success teams.
| Integration | Available | Notes |
|---|---|---|
| API | ✓ | REST API |
| MCP | - | Not available |
| CLI | - | None |
| SDK | - | Use API directly |
Authorization: Bearer {access_token}POST https://api.attentivemobile.com/v1/subscriptions
{
"user": {
"phone": "+15551234567",
"email": "[email protected]"
},
"signUpSourceId": "...",
"subscriptionType": "MARKETING"
}
Sign-up source ID determines opt-in attribution and compliance disclosure shown.
POST https://api.attentivemobile.com/v1/subscriptions/unsubscribe
{
"user": { "phone": "+15551234567" },
"subscriptionType": "MARKETING"
}
POST https://api.attentivemobile.com/v1/events/custom
{
"user": { "phone": "+15551234567" },
"type": "abandoned_cart",
"properties": {
"cart_value": 89.99,
"items": ["Product A"]
}
}
POST https://api.attentivemobile.com/v1/events/ecommerce/purchase
{
"user": { "phone": "+15551234567" },
"items": [{
"productId": "SKU-123",
"name": "Product A",
"price": { "value": 4999, "currency": "USD" },
"quantity": 1
}],
"occurredAt": "2026-05-15T10:00:00Z"
}
Similar endpoints for /add_to_cart, /product_view, /checkout.
POST https://api.attentivemobile.com/v1/messages/transactional
{
"user": { "phone": "+15551234567" },
"messageBody": "Your order #1234 shipped. Track: https://...",
"type": "ORDER_SHIPPING"
}
GET https://api.attentivemobile.com/v1/campaigns
Subscribe to: subscriber.created, subscriber.unsubscribed, message.sent, message.delivered, message.failed, conversion.attributed.
REST + JSON. Bearer auth. Webhook signature verification via HMAC-SHA256.