Working with Status Messages
This article describes the API commands for working with Status Update Messages.
status #
This command lists fifty most recent Status messages. If you include the user_id through the query string, the messages will be filtered by the specified user.
Method: GET
Example response:
1 2 3 4 5 6 7 8 9 10
<messages> <message> <id>1</id> <message> <![CDATA[This is a message]]> </message> ... </message> ... </messages>
status/add #
This command submits a new Status message in activeCollab.
Method: POST
Example request:
1 2
status_update[message]=New status message submitted=submitted
Response:
1 2 3 4 5 6 7 8 9
<message> <id>1</id> <message> <![CDATA[This is a message]]> </message> <replies> ... </replies> </message>