DocsAPI ReferenceRouting/bff/routing/update
postRoutingAdmin BFF

/bff/routing/update

Updates route properties (slug, canonical status). Only provided fields are updated, others remain unchanged. For canonical switching (unmark old + mark new), prefer the /set-canonical endpoint.

RoutingpostBffRoutingUpdate

Parameters

3 body

3 total
Body · 3
idstringRequired

Route ID to update.

slugstring

New slug value. Must be unique within the organisation.

canonicalboolean

Set canonical status. Use /set-canonical endpoint for safe canonical switching.

Request

POST /bff/routing/update

post
curl -X POST "https://api.bizkithub.com/bff/routing/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "id": "123",
  "slug": "new-slug",
  "canonical": false
}'

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