Api Documentation

Comments

Comments allow your users to give feedback to news articles or bulletinboard items. Users can leave comments on news articles or bulletinboard items. They can also edit their own comments. User authentication is required for the CREATE and UPDATE methods.
Json
XML
GET https://api.bundeling.com/V2/comments

Includes

NameDescriptionEndpoint
authorRetrieves information about the author of the commentUsers
repliesRetrieves replies to a top level commentComments
replies.authorRetrieves information about the author of the commentUsers

Example request

Headers

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

Example response

{
    "data": [
        {
            "uuid": "podj65hoij23r09thoji5",
            "author_uuid": "eokgieu5hjgieu5ghjr4",
            "comment": "This is a comment.",
            "object_type": "news_item",
            "external_reference": "123908",
            "creationdate": "2024-01-20T00:00:00+0100",
            "lastupdate": "2024-01-20T00:00:00+0100"
        }
    ],
    "pagination": {
        "total": 1,
        "per_page": 100,
        "current_page": 1,
        "total_pages": 1
    }
}