Skip to main content
PUT
https://api.bouncy.ai
/
v1
/
groups
/
:groupId
curl -X PUT https://api.bouncy.ai/v1/groups/grp_abc123xyz \
  -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Summer Campaign 2026 (Updated)",
    "color": "#00FF00"
  }'
{
  "id": "grp_abc123xyz",
  "message": "Group updated successfully",
  "updatedFields": ["name", "color"]
}

Request

Headers

X-Api-Key
string
required
Your API key (e.g., bcy_live_pk_YOUR_API_KEY)
Content-Type
string
required
Must be application/json

Path Parameters

groupId
string
required
The group IDExample: grp_abc123xyz

Body

name
string
Updated group nameExample: Summer Campaign 2026 (Updated)
description
string
Updated descriptionExample: Updated description for summer campaign
color
string
Updated hex color codeExample: #00FF00

Response

id
string
Group ID
message
string
Success message
updatedFields
array
List of fields that were updated
curl -X PUT https://api.bouncy.ai/v1/groups/grp_abc123xyz \
  -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Summer Campaign 2026 (Updated)",
    "color": "#00FF00"
  }'
{
  "id": "grp_abc123xyz",
  "message": "Group updated successfully",
  "updatedFields": ["name", "color"]
}