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

Update Group

Update the name of an existing contact group.
curl -X PUT "https://accounts.netvox.ng/api/v2/Group?id=33" \
  -H "Content-Type: application/json" \
  -d '{
    "GroupName": "Updated Group Name",
    "ApiKey": "YOUR_API_KEY",
    "ClientId": "YOUR_CLIENT_ID"
  }'

Parameters

id
number
required
ID of the group to update

Request Body

GroupName
string
required
New name for the 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": "Group updated Successfully."
}

Use Cases

  • Group maintenance: Update group names for better organization
  • Rebranding: Change group names to match new business requirements
  • Integration sync: Update groups to match external system changes