Skip to main content
POST
/
api
/
v1
/
contacts
/
groups
Create Group
curl --request POST \
  --url https://api.example.com/api/v1/contacts/groups \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "member_count": 123,
  "created_at": "<string>",
  "description": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.wazzapi.com/llms.txt

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

Headers

Authorization
string | null

Body

application/json

Request to create a group.

name
string
required
Required string length: 1 - 255
description
string | null
Maximum string length: 1000

Response

Successful Response

Contact group list item.

id
string<uuid>
required
name
string
required
member_count
integer
required
created_at
string
required
description
string | null