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

Messages

Messages can be sent from one user to another and can either be a normal message or a connection invite. For privacy reasons, user authentication is always required for this endpoint.
Retrieves all messages for the current user.
Retrieves a single message.
Sends a new message or connection invite.
Updates the status of a message or connection invite. Can only be changed by the recipient. Accepting an invitation will create a connection between the author and the recipient of the message.
Deletes a single message or invitation.
Json
XML
GET https://api.bundeling.com/V1/messages

Parameters

Url

NameDescriptionType
idA unique integer used to identify a message or invitation.int

Example request

Headers

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

Example response

{
    "id": 102,
    "author_id": 6,
    "recipient_id": 9,
    "type": "message",
    "colleague_user_id": 0,
    "in_response_to_id": 7,
    "status": "unread",
    "message": "Dear John Doe...",
    "creationdate": "2017-02-10T16:35:00+0000"
}