This API endpoint is used to retrieve the count of pending reviews for a specific user and currency.
Endpoint #
The Voomerr Pending Review Counter endpoint is POST https://admin.voomerr.com/api/pending_reviews_counter.php
Request Parameters #
| Parameter | Required | Type | Description |
|---|---|---|---|
| user_id | Yes | string | The ID of the user for whom to retrieve the count |
| currency | Yes | string | The currency for which to retrieve the count |
Request Example #
json
{
"user_id": "1234",
"currency": "USD"
}Response Parameters #
| Parameter | Type | Description |
|---|---|---|
| count | int | The count of pending reviews for the user |
Response Example #
json
{
"count": 2
}
