📦
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

Was this helpful?

  1. Integrations

Creating New Contact Group

Learn how to create a new contact group with our API.

GET /api/contacts/create_contactgroup/

Create a new contact group using our proxy API.

curl -XGET 'https://tasks-wave.mobivate.com/api/contacts/create_contactgroup/?username=username&password=password&group_name=MyGroup
import requests

response = requests.get(
    'https://tasks-wave.mobivate.com/api/contacts/create_contactgroup/?username=username&password=password&group_name=MyGroup',
)

Headers

Name
Value

Content-Type

application/json

Authorization

No Auth

Body

Parameter
Required
Description

username

Yes

The username used to login to Mobivate.

password

Yes

The password used to login to Mobivate.

group_name

No

Your contact group name.

Response

{
    "status": "ok",
    "group_id": "group_id"
}
{
   "message":"Not Authenticated"
}
PreviousAdding / Removing ContactsNextSending simple Notification messages

Last updated 1 month ago

Was this helpful?

📚