Documentation Index
Fetch the complete documentation index at: https://thehyperstack.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
This endpoint allows you to view an existing credential group in Hyperstack. The group key is passed as a URL path parameter.
Bearer YOUR_API_TOKEN — obtainable from Hyperstack Dashboard → Settings → API Access
Path Parameters
Unique key of the credential group to retrieve.
Success Response Fields
Indicates whether the request was successful. Always true for a 200 response.
The title of the credential group.
Description of the credential group.
Comma-separated tags associated with the credential group.
Human-readable code for the group.
External URL associated with the credential group.
Indicates whether credentials in this group expire.
Validity period in years. Only present when does_expire is true.
Responses
{
"success": true,
"title": "Course Completion Certificate",
"description": "Awarded upon successful completion of the course.",
"tags": "apple,mango,orange",
"group_code": "CERT-2024",
"url": "https://acme.com/course",
"does_expire": true,
"validity": 1
}
curl -X GET "https://api.thehyperstack.com/v1/group/view/SBXCmfk47u5y" \
-H "Authorization: Bearer YOUR_API_TOKEN"