cURL
curl --request POST \ --url https://api.hixbe.com/certify/programs \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'Hixbe-Version: <hixbe-version>' \ --data ' { "name": "Advanced Cybersecurity Certification", "description": "Comprehensive program covering network security, ethical hacking, and compliance frameworks" } '
{ "id": "prog_1234567890abcdef", "name": "Advanced Cybersecurity Certification" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
API version in YYYY-MM-DD format
"2026-01-01"
Request payload for creating a new certification program
Display name for the certification program
"Advanced Cybersecurity Certification"
Detailed description of the certification program
"Comprehensive program covering network security, ethical hacking, and compliance frameworks"
Certification program created successfully
Response containing certification program information
Unique identifier for the program
"prog_1234567890abcdef"
Display name of the program
Was this page helpful?