Warning: API Version 1 is deprecated. Please use API Version 2.
Api Documentation

Bulletinboard items

Retrieves bulletinboard items and rudimentary information about them.
Retrieves a single bulletinboard item and rudimentary information about it.
Creates a new bulletinboard item
Updates an existing bulletinboard item.
Deletes a single bulletinboard item. Only available to API keys without user authentication.
Json
XML
POST https://api.bundeling.com/V1/bulletinboard_items

Parameters

Body

NameDescriptionTypeNillableRequired
bulletinboard_idA unique identifier used to identify a bulletinboardstringfalsetrue
category_idThe category in which to place the itemintfalsetrue
user_idThe author of the bulletinboard item. Only required with API keys without user authentication. Else this field will be set to the authenticated user.intfalsefalse
activeDefines if the item is active and visible to other usersbooleanfalsetrue
titleThe title of the itemstringfalsetrue
textThe content of the itemstringfalsetrue
linkAn link to an external webpagestringfalsefalse
enddateBulletinboard item is closed after this datedatetimefalsefalse

Example request

Headers

Content-Type:application/json
Api-Key:RAegSX8yZfEbqSPM

Body

{
    "bulletinboard_id": "SEFryszojAGSadgOrdghIJij2dfg",
    "category_id": 5,
    "user_id": 12,
    "active": true,
    "title": "Car for sale",
    "text": "I am selling my car...",
    "link": "https://bundeling.com",
    "enddate": "2017-01-15T18:00:00+0000"
}