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
PUT https://api.bundeling.com/V1/bulletinboard_items

Parameters

Url

NameDescriptionType
idA unique integer used to identify a bulletinboardint

Body

NameDescriptionTypeNillable
bulletinboard_idA unique identifier used to identify a bulletinboardstringfalse
category_idThe category in which to place the itemintfalse
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.intfalse
activeDefines if the item is active and visible to other usersbooleanfalse
titleThe title of the itemstringfalse
textThe content of the itemstringfalse
linkAn link to an external webpagestringfalse
enddateBulletinboard item is closed after this datedatetimefalse

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"
}