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

Parameters

Url

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

Body

NameDescriptionTypeNillable
statusThe status of the message or invitation.
Accepted values: read, accepted
stringfalse

Example request

Headers

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

Body

{
    "status": "read"
}

Example response

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