Skip to content

Update a Group

Rename or re-describe an existing asset group. Returns the updated group with 200 OK.

VIP only. This endpoint is available to VIP accounts only. Normal accounts get 403 TIER_FORBIDDEN.

PUT https://console-api.siraya.ai/extapi/v1/assets/groups/{groupId}

Path Parameters

groupId string Required
The unique identifier of the group to update.

Body

name string
The new group name.
description string
The new group description.
curl -X PUT https://console-api.siraya.ai/extapi/v1/assets/groups/g-1a2b3c \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{"name":"Marketing images","description":"Q4 campaign"}'
import requests

url = "https://console-api.siraya.ai/extapi/v1/assets/groups/g-1a2b3c"
headers = {"Authorization": "Bearer <API_KEY>"}

response = requests.put(
    url,
    headers=headers,
    json={"name": "Marketing images", "description": "Q4 campaign"},
)
print(response.json()["data"])

Example Response

{
  "isSuccess": true,
  "data": {
    "groupId": "g-1a2b3c",
    "name": "Marketing images",
    "description": "Q4 campaign",
    "isDefault": false,
    "createdAt": "2026-06-11T10:30:00Z"
  }
}