Blipfoto API

get/unreadcount

This resource is used to return the number of unread comments and/or notifications for the authenticated user.

URL

http://api.blipfoto.com/get/unreadcount/

Parameters

This resource also requires the API Key and Authentication parameters.

Parameter Description Required?
data A comma separated list of values for the data you wish to retrieve. The available values are: No
comments The number of unread comments
notifications The number of unread notifications

e.g. data=comments,notifications

Response data

The data object is an associative array of integers containing the information that was requested.

Example

The following request:

http://api.blipfoto.com/get/unreadcount/?api_key=4c297fc904&data=comments,notifications

may give this response:

<?xml version="1.0" encoding="UTF-8"?>
<blipapi>
	<request_id></request_id>
	<error></error>
	<data>
		<comments>0</comments>
		<notifications>4</notifications>
	</data>
</blipapi>