📦
Mobivate Bulk API Documentation
  • 👋Welcome to BulkSMS
  • AUTHENTICATION & INTEGRATION
    • Getting started with Integration
      • Creating a New API Key
      • Get API Key
      • Test API Key
    • Registering Webhooks
      • Delivery Receipt Notification
      • Incoming Message Notification
      • Short URL Click Notification
    • Understanding Response Codes
  • USE CASES
    • Send Single SMS Message
      • Understanding SMS Response Codes
    • Send Batch SMS Messages
      • Understanding Batch SMS Response Codes
    • Search Message logs
    • Search for Single Message log
    • List OptOuts
    • Add an OptOut
    • Delete an OptOut
    • Frequently Asked Questions
  • 📚Integrations
    • Integrating Mobivate framework into your own application
    • Automate SMS messages using events through Zapier
    • Asynchronous Number Verification
    • Synchronous Number Verification
    • Adding / Removing Contacts
    • Creating New Contact Group
  • 🔓ARCHIVED DOCS
    • Sending simple Notification messages
    • Sending SMS from 3rd Party Providers
    • Sending Campaigns
Powered by GitBook
On this page
  • Request URL
  • Content Type
  • Post Data (raw)
  • Parameters

Was this helpful?

  1. ARCHIVED DOCS

Sending SMS from 3rd Party Providers

Learn how to send SMS in a JSON format using our API.

PreviousSending simple Notification messagesNextSending Campaigns

Last updated 1 year ago

Was this helpful?

If your service provider is already integrated with Mobivate SMS, you should be able to configure your API Key on their platform and this should enable you to send SMS directly from the 3rd Party software.

The API Key, you can find on under the User Profile section.

If your service provider is not already integrated, you can ask them to do so. It should only take them few minutes to complete the integration using this simple API:

Request URL

https://api.mobivatebulksms.com:443/send/single?api_key={API_Key which you provide to them}

Content Type

application/json

Post Data (raw)

{
  "originator" : "TEST",
  "recipient" : "447930000000",
  "body" : "Hello World",
  "routeId" : "mglobal"
}

Parameters

Parameter
Required?
Description

routeId

Yes

Mobivate recommends using "mglobal", but other Route IDs are available upon request.

originator

Yes

11 alpha-numeric sender name or 15 digit number.

recipient

Yes

international formatted mobile/cell number.

body

Yes

Text message (160 characters, 70 if containing Unicode (2 bytes) characters).

campaignId

No

Campaign ID. Requires an existing Campaign.

reference

No

Your internal reference.

🔓
our portal