List all boards
GET/v2/boards
Returns all boards (post categories) for the authenticated organization.
Boards are containers for posts/feedback. Each board can have different:
- Access controls (public, private, segment-restricted)
- Feature toggles (comments, posting enabled)
- Custom fields
This endpoint returns all boards without pagination. Organizations typically have a small number of boards.
List all boards
curl https://do.featurebase.app/v2/boards \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"[
{
"id": "507f1f77bcf86cd799439011",
"access": {
"adminOnly": false,
"allowedRoles": [
"string"
],
"deniedRoles": [
"role_blocked"
],
"segments": [
"string"
]
},
"createdAt": "2023-12-12T00:00:00.000Z",
"customFields": [
"cf_priority",
"cf_category"
],
"features": {
"commentsEnabled": true,
"createdDatesVisible": true,
"postingEnabled": true
},
"icon": {
"type": "emoji",
"value": "💡"
},
"localization": {
"description": {
"en": "Submit and vote on feature ideas"
},
"formPlaceholder": {
"en": "Describe your feature idea..."
},
"heroDescription": {
"foo": "string"
},
"heroTitle": {
"en": "Share your ideas"
},
"name": {
"en": "Feature Requests",
"es": "Solicitudes de funciones"
},
"submitButtonText": {
"en": "Submit Feedback"
}
},
"name": "Feature Requests",
"object": "board",
"postDefaults": {
"visibility": "public"
}
}
]Returns Examples
[
{
"id": "507f1f77bcf86cd799439011",
"access": {
"adminOnly": false,
"allowedRoles": [
"string"
],
"deniedRoles": [
"role_blocked"
],
"segments": [
"string"
]
},
"createdAt": "2023-12-12T00:00:00.000Z",
"customFields": [
"cf_priority",
"cf_category"
],
"features": {
"commentsEnabled": true,
"createdDatesVisible": true,
"postingEnabled": true
},
"icon": {
"type": "emoji",
"value": "💡"
},
"localization": {
"description": {
"en": "Submit and vote on feature ideas"
},
"formPlaceholder": {
"en": "Describe your feature idea..."
},
"heroDescription": {
"foo": "string"
},
"heroTitle": {
"en": "Share your ideas"
},
"name": {
"en": "Feature Requests",
"es": "Solicitudes de funciones"
},
"submitButtonText": {
"en": "Submit Feedback"
}
},
"name": "Feature Requests",
"object": "board",
"postDefaults": {
"visibility": "public"
}
}
]