/api/v1/post-feedback/
Stores a 1-5 rating and an optional note for a post identified by its public external id. Used by the public /post-feedback page on bizkithub.com.
post-feedbackpostApiV1Post-feedback
Parameters
1 query · 3 body
Query · 1
apiKeystringRequiredYour BizKitHub API key (passed as GET parameter).
Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more
Body · 3
postIdstringRequiredPost public id (content__post.external_id), 16 chars.
Length: 16–16
scorestring | integerRequired1 = velmi špatné, 5 = výborné.
Range: 1–5
descriptionstringOptional free-form note from the visitor.
Length: 0–1000
Request
POST /api/v1/post-feedback/
curl -X POST "https://api.bizkithub.com/api/v1/post-feedback/?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"postId": "6IU2SWgP76FO2UXw",
"score": 5,
"description": "Skvělý článek, jen by chtělo víc příkladů."
}'Response
JSON payload
{
"success": true
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.