Messages ======== Message summary --------------- .. code-block:: http http https://sls-api.sheepcrm.com/selfservice/v2/$FLOCK/messages/summary/ "Authorization: Bearer $APP_API_TOKEN" HTTP/1.1 200 OK { } Get all messages for the user ----------------------------- .. code-block:: http http https://sls-api.sheepcrm.com/selfservice/v2/$FLOCK/messages/ "Authorization: Bearer $APP_API_TOKEN" HTTP/1.1 200 OK { List of all messages } A single message ---------------- .. code-block:: http http https://sls-api.sheepcrm.com/selfservice/v2/$FLOCK/message/{message-uid}/ "Authorization: Bearer $APP_API_TOKEN" Read a message -------------- Get the message and mark it as read .. code-block:: http http https://sls-api.sheepcrm.com/selfservice/v2/$FLOCK/message/{message-uid}/read/ "Authorization: Bearer $APP_API_TOKEN" Acknowledge a message --------------------- .. code-block:: http http PUT https://sls-api.sheepcrm.com/selfservice/v2/$FLOCK/message/{message-uid}/acknowledge/ "Authorization: Bearer $APP_API_TOKEN"