Description
This endpoint allows you to update an existing credential group in Hyperstack. The group key is passed as a URL path parameter. Only the fields provided in the request body will be updated.
Bearer YOUR_API_TOKEN — obtainable from Hyperstack Dashboard → Settings → API Access
Path Parameters
Unique key of the credential group to update.
Body Parameters
Updated title of the credential group.
Updated description of the credential group.
New certificate template key.
Updated external URL associated with the credential group.
Updated tags for the credential group.
Updated human-readable code for the group. Alphanumeric, hyphens, and spaces only.
Indicates whether credentials in this group expire.
Validity period (in years) if does_expire is true.
Enable/disable decentralized blockchain anchoring for credentials.
Success Response Fields
Indicates whether the group update was successful. Always true for a 200 response.
Responses
200 Success
400 Bad Request
404 Not Found
401 Unauthorized
curl -X POST "https://api.thehyperstack.com/v1/group/update/unique_group_id_12345" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"title": "Updated Course Certificate",
"description": "Updated course description",
"tags": ["updated", "certificate"],
"does_expire": true,
"validity": 2
}'