[[toc]]
Refer below to a documentation on how to manage your contact groups
via our REST API’s.
POST /contact-groups
Bearer your_bearer_token_here
https://developer.shauriwave.com/integration
application/json
sample payload
{
"name": "Client List"}
Parameter |
Required |
Description |
name |
Yes |
Name of your contact group. |
sample response
{
"message": "Contact group created successfully!"}
GET /contact-groups
Bearer your_bearer_token_here
https://developer.shauriwave.com/integration
application/json
sample payload
{
"limit": 10}
Parameter |
Required |
Description |
limit |
No |
Limit the no of results to return. |
sample response
[
{ "uuid": "f288b054-6235-4d3b-8fd5-71ee74eb3f93", "name": "Client List" }]
DELETE /contact-groups/{contact_group_uuid}
Bearer your_bearer_token_here
https://developer.shauriwave.com/integration
application/json
Parameter |
Required |
Description |
contact_group_uuid |
Yes |
The contact group uuid of one of your contact groups. |
sample response
{
"message": "Contact group deleted successfully!"}