/bff/post/post-meta-upsert
Idempotent upsert against content__post_meta(post_id, key). Calling with the same key overwrites the value.
PostpostBffPostPost-meta-upsert
Parameters
3 body
Body · 3
idstringRequiredPost external ID.
keystringRequiredMetadata key. 1–64 chars (matches content__post_meta.key column).
Length: 1–64
valuestringRequiredMetadata value. Free text; long values are allowed.
Request
POST /bff/post/post-meta-upsert
curl -X POST "https://api.bizkithub.com/bff/post/post-meta-upsert" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id": "aBcDeFgH12345678",
"key": "example_key",
"value": "example_value"
}'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.