Skip to main content
POST
/
api
/
v2
/
Group
{
  "ErrorCode": 123,
  "ErrorDescription": "<string>",
  "Data": "<string>"
}

Create Group

Create a new contact group for organizing your contacts.
curl -X POST "https://accounts.netvox.ng/api/v2/Group" \
  -H "Content-Type: application/json" \
  -d '{
    "GroupName": "New Group",
    "ApiKey": "YOUR_API_KEY",
    "ClientId": "YOUR_CLIENT_ID"
  }'

Request Body

GroupName
string
required
Name for the new group
ApiKey
string
required
Your API key for authentication
ClientId
string
required
Your client identifier for authentication

Response

ErrorCode
number
Error code (0 for success)
ErrorDescription
string
Description of the result
Data
string
Success message

Success Response

{
  "ErrorCode": 0,
  "ErrorDescription": "Success",
  "Data": "success#New Group added successfully."
}

Error Response

{
  "ErrorCode": 027,
  "ErrorDescription": "Already exist"
}

Use Cases

  • Contact organization: Create groups for different customer segments
  • Targeted messaging: Organize contacts for specific campaigns
  • Bulk operations: Manage large contact lists efficiently
  • Integration: Sync groups with your CRM or marketing platform