Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
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.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredArray of available scopes.
codestringRequiredScope code used for assignment.
labelstringRequiredHuman-readable label for the scope.
descriptionstringRequiredDescription of what the scope grants access to.
{
"items": [
{
"code": "example_code",
"label": "example_label",
"description": "example_description"
}
]
}GET /bff/api-key/scope/list
curl -X GET "https://api.bizkithub.com/bff/api-key/scope/list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.