Create a new contact group in the organization.
Required Fields:
Use Cases:
cURL
lead_group
curl --request POST \ --url https://app.sentsays.com/api/contact-groups \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "Lead" }'
{ "statusCode": 200, "id": "fd3f92b5-340c-4259-a189-896a38b885d7", "message": "Request processed successfully" }
Bearer token authentication. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY
Authorization: Bearer YOUR_API_KEY
Name of the contact group (required)
1
"Lead"
Contact group created successfully
200
"fd3f92b5-340c-4259-a189-896a38b885d7"
"Request processed successfully"