Creating New Contact Group
Learn how to create a new contact group with our API.
GET /api/contacts/create_contactgroup/
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=MyGroupimport 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"
}Last updated
Was this helpful?