This method retrieves the amount of API points left in your monthly quota.
| Version: | 2 |
| Quota Point Cost: | 0 |
http://api.adgooroo.com/v2/Utilities/GetMonthlyQuotaInfo.api
// XML Output
<?xml version="1.0"?>
<api_result>
<api_class>Utilities</api_class>
<api_method>GetMonthlyQuotaInfo</api_method>
<quota_cost>0</quota_cost>
<status>SUCCESS</status>
<message />
<value>
<row>
<remaining_points>30</remaining_points>
<for_month>03/2011</for_month>
</row>
</value>
</api_result>
// JSON Output
{
"api_class": "Utilities",
"api_method": "GetMonthlyQuotaInfo",
"quota_cost": 0,
"status": 0,
"message": null,
"value": {
"row": [
{
"remaining_points": 30.0,
"for_month": "03/2011"
}
]
}
}
// CSV Output
remaining_points,for_month
30,03/2011