DocsAPI ReferencePost/bff/post/post-meta-upsert
postPostAdmin BFF

/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

3 total
Body · 3
idstringRequired

Post external ID.

keystringRequired

Metadata key. 1–64 chars (matches content__post_meta.key column).

Length: 164
valuestringRequired

Metadata value. Free text; long values are allowed.

Request

POST /bff/post/post-meta-upsert

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

Get API Key