Retrieves bulletinboard items and rudimentary information about them. When module-bulletin-board-moderation is enabled, items with moderation_status "pending" or "rejected" are only visible to the user who created them.
Creates a new bulletinboard item. When module-bulletin-board-moderation is enabled, the item will be created with moderation_status "pending" and active set to false, regardless of the active parameter. The item must be approved by a manager in the dashboard before it becomes visible to other users.
Updates an existing bulletinboard item. When module-bulletin-board-moderation is enabled and active is set to true, the item will be set to moderation_status "pending" instead.
Deletes a single bulletinboard item. Only available to API keys without user authentication.
Json
XML
POST https://api.bundeling.com/V2/bulletinboard_items
Parameters
Body
Name
Description
Type
Nillable
Required
bulletinboard_uuid
A unique identifier used to identify a bulletinboard
string
false
true
category_uuid
The unique identifier of the category in which to place the item
string
false
true
user_uuid
The unique identifier of the author of the bulletinboard item. Only required with API keys without user authentication. Else this field will be set to the authenticated user.
string
false
false
active
Defines if the item is active and visible to other users. When module-bulletin-board-moderation is enabled, this field is ignored and the item will be set to pending.
boolean
false
false
title
The title of the item
string
false
true
text
The content of the item
string
false
false
link
An link to an external webpage
string
false
false
enddate
Bulletinboard item is closed after this date
datetime
false
true
external_reference
Reference for linking to external systems.
string
false
false
Example request
Headers
Content-Type:application/json
Api-Key:RAegSX8yZfEbqSPM
Body
{
"bulletinboard_uuid": "56f09a35ea14453ba94bc2b2add19a23",
"category_uuid": "8e09c4749b234633a7319148aac8cb81",
"user_uuid": "d669b048d2084892b5a5232b78923227",
"active": true,
"title": "Car for sale",
"text": "I am selling my car...",
"link": "https://bundeling.com",
"enddate": "2026-08-10T18:00:00+0200",
"external_reference": "123908"
}