Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 10 Next »

URL: /services/rest/user/messages

Works for POST and application/x-www-form-urlencoded parameters, or GET and query parameters


This method queries the capped collection of messages so has limited history to query

When querying from the next 100 messages set the since parameter to the newestMessageTimestamp value of the last response.


name
description
example value
validation rules
usernameUsername of registered user1234321@resellerCannot be null or empty, cannot contain spaces, user must exist
passwordPasswordpasswordCannot be null or empty, must match user's password
sinceEpoch, number of seconds since 1st Jan 1970 GMT1364545939Required, must be an integer number
Response

Response is a array of messages in JSON, with some additional information.

{
    newestMessageTimestamp = 123458,
    messages = [
                {
            from = 61409560857;
recipient = 61411001001;
            documentId = 12345;
            originDocumentId = 533221;
            timestamp = 1362461321;
            text = "This is a server side message";
        },
                {
            from = 61409560857;
recipient = 61011001002;
            documentId = 123457;
            originDocumentId = 533222;
            timestamp = 1362461325;
            text = "This is another server side message";
        }
    ],
    status = 0,
    hasMoreMessages = false
}

Response parameters

namedescription
newestMessageTimestamptimestamp of the newest returned message
hasMoreMessagestrue if there are more messages to retrieve from server, false otherwise
status0 if everything is OK, error code otherwise
messageslist of messages

Parameters of single message

namedescription
fromnumber of message sender
documentIdmessage ID
originDocumentIdID of the message this message is reply for
timestamptimestamp of the message
textmessage text

Possible statuses

0, 1, 2, 3, 4, 200, 220, 9999 

Status codes and their meaning: User and Reseller REST API Response Status Codes

  • No labels