/bff/routing/list
Returns a paginated routing table for the authenticated organisation. Supports filtering by entity type, entity ID, slug, canonical status, and locale. Routes are ordered by insertion date (newest first).
Parameters
7 query
typeCodestringFilter by route type code (e.g. "article", "product-detail").
relatedEntityIdstringFilter by related entity ID. Accepts internal numeric ID or external ID (e.g. "P93gIby6q5t2gi2a"). When using external ID, typeCode must also be provided for correct resolution.
slugstringFilter by slug (partial match, case-insensitive).
canonicalstringFilter by canonical status ("true" or "false").
localestringFilter by locale code (e.g. "cs", "en").
pagestringPage number (1-based). Default: 1.
limitstringItems per page (max 200). Default: 50.
Request
GET /bff/routing/list
curl -X GET "https://api.bizkithub.com/bff/routing/list?typeCode=article&relatedEntityId=42&slug=my-article&canonical=true&locale=cs&page=1&limit=50" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
Paginated list of routes.
{
"items": [
{
"id": "example_id",
"typeCode": "example_typeCode",
"slug": "example_slug",
"canonical": false,
"relatedEntityId": 0,
"locale": "example_locale"
}
],
"itemCount": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.