Boards
Create boards API
Introduction
The featureOS create boards API allows you to create boards in your organization.
POST https://api.featureos.app/api/v3/buckets
Headers
Parameter | Default | Description |
---|---|---|
API-KEY | - | Generate from organization settings on the admin dashboard. |
Authorization | - | Generate a unique JWT token specific to a user. |
Body Parameters
Parameter | Default | Format | Description |
---|---|---|---|
name | true | String | Name of the board (also used to create the slug) |
description | false | Text | Explain what this board will be used for |
private | false | Boolean | Only members and admins can access private boards |
default | false | Boolean | Submissions are not allowed for this board |
read_only | false | Boolean | Submissions are not allowed for this board |
form_heading | false | String | Heading for the board's form |
form_description | false | String | Description for the form |
form_title | false | String | Placeholder text for form title label |
form_title_placeholder | false | String | Placeholder text for form title field |
form_details | false | String | Placeholder text for form description label |
form_details_placeholder | false | String | Placeholder text for form description field |
submission_template | false | Text | Create pre-filled content as submission template. |
submit_button_text | false | String | Submit button text |
Sample response
{
"success": true,
"id": 1,
"slug": "feedback",
"name": "Feedback",
"default": true,
"private": false,
"read_only": false,
"form": {
"description": null,
"details": "Your Thoughts",
"details_placeholder": "Remember, the more you tell, the more we know.",
"heading": "New Submission",
"title": "Title",
"title_placeholder": "Title of your submission",
"hello_sentence": null,
"submission_template": null,
"submit_button_text": "New Post"
}
}