BizKitHub
DocsAPI ReferenceApi Key/bff/api-key/scope/list
getApi KeyAdmin BFF

/bff/api-key/scope/list

Returns a list of all available scope codes that can be assigned to an API key. Use these codes when setting scopes via the /scope/set endpoint.

API KeygetBffApi-keyScopeList

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200SuccessList of available API key scopes.
itemsobject[]Required

Array of available scopes.

Each array item:
codestringRequired

Scope code used for assignment.

labelstringRequired

Human-readable label for the scope.

descriptionstringRequired

Description of what the scope grants access to.

Response example

application/json
{
  "items": [
    {
      "code": "example_code",
      "label": "example_label",
      "description": "example_description"
    }
  ]
}

Request example

GET /bff/api-key/scope/list

get
curl -X GET "https://api.bizkithub.com/bff/api-key/scope/list" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key