DocsAPI ReferencePost Feedback/api/v1/post-feedback/
postPost FeedbackPublic API v1

/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

4 total
Query · 1
apiKeystringRequired

Your 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
postIdstringRequired

Post public id (content__post.external_id), 16 chars.

Length: 1616
scorestring | integerRequired

1 = velmi špatné, 5 = výborné.

Range: 15
descriptionstring

Optional free-form note from the visitor.

Length: 01000

Request

POST /api/v1/post-feedback/

post
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.

Get API Key