PUT
/
api
/
contact-groups
/
{uuid}
Update Contact Group
curl --request PUT \
  --url https://app.sentsays.com/api/contact-groups/{uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Premium Customers"
}'
{
  "statusCode": 200,
  "id": "fd3f92b5-340c-4259-a189-896a38b885d7",
  "message": "Request processed successfully"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY

Path Parameters

uuid
string
required

UUID of the contact group to update

Example:

"249657cb-a9b0-445d-932e-4c04fe07a384"

Body

application/json

Response

200
application/json

Contact group updated successfully

The response is of type object.