Count Review Requests¶
Path: | api/json/reviewrequests/all/count/ |
---|
HTTP GET¶
Returns the count of public review requests on the server.
Request Parameters¶
Parameter | Type | Description |
---|---|---|
status (optional) | String | The status of the review requests to return. This can be one of: pending, submitted, discarded or all. This defaults to pending. |
Example Request¶
GET /api/json/reviewrequests/all/count/?status=pending
Responses¶
HTTP 200: Success¶
Field | Type | Description |
---|---|---|
count | Integer | The number of review requests. |
Example Response¶
{
stat: "ok",
count: 50
}
HTTP 401: Unauthorized¶
Error 103: Not Logged In¶
The client making the request is not logged in and the server disallows anonymous access.
See Authenticating for more information.