Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.vfbulk.ie/llms.txt

Use this file to discover all available pages before exploring further.

1. Get your credentials

Contact bulktext.ie@vodafone.com to retrieve your username, password, and API ID.

2. Get an access token

curl -X POST https://auth.vodafone.com/token \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "grant_type=password&client_id=ismstoken&username=YOUR_USERNAME&password=YOUR_PASSWORD"
Copy the access_token from the response. It expires in 120 seconds.

3. Send a message

curl -X POST https://api.vodafone.com/api/v2/Campaign \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Hello from Vodafone Bulk Text!",
    "from": "Vodafone",
    "recipientInfo": [
      { "msisdn": "353861234567" }
    ]
  }'
Successful response:
Campaign response
{
  "success": true,
  "message": "Campaign scheduled",
  "errors": []
}

Next steps

Authentication

Understand token expiry and refresh strategy.

Sender IDs

Find out which Sender IDs are available on your account.

Sending SMS

Bulk sends, scheduling, and notifyId tracking.

API Reference

Full endpoint reference with interactive playground.
Last modified on May 6, 2026