This method retrieves information an AdGooroo account. Information for sub-accounts is also displayed. The username(s), user ID, number of keywords used/subscribed to number of TM/Display/Link licenses used/subscribed to is retrieved.
| Version: | 2 |
| Quota Point Cost: | 20 |
http://api.adgooroo.com/v2/Utilities/GetInfo.api
// XML Output
<?xml version="1.0"?>
<api_result>
<api_class>Utilities</api_class>
<api_method>GetInfo</api_method>
<quota_cost>0</quota_cost>
<status>SUCCESS</status>
<message />
<value>
<row>
<username>testing2</username>
<userid>44032</userid>
<masterid>43645</masterid>
<keywordsused>15</keywordsused>
<keywordsallowed>300</keywordsallowed>
<tmlicensesused>0</tmlicensesused>
<tmlicensesallowed>0</tmlicensesallowed>
<urlsused>0</urlsused>
<urlsallowed>0</urlsallowed>
<lilicensesused>1</lilicensesused>
<lilicensesallowed>2</lilicensesallowed>
</row>
</value>
</api_result>
// JSON Output
{
"api_class": "Utilities",
"api_method": "GetInfo",
"quota_cost": 0,
"status": 0,
"message": null,
"value": {
"row": [
{
"username": "testing2",
"userid": 44032.0,
"masterid": 43645.0,
"keywordsused": 15.0,
"keywordsallowed": 300.0,
"tmlicensesused": 0.0,
"tmlicensesallowed": 0.0,
"urlsused": 0.0,
"urlsallowed": 0.0,
"lilicensesused": 1.0,
"lilicensesallowed": 2.0
}
]
}
}
// CSV Output
username,userid,masterid,keywordsused,keywordsallowed,tmlicensesused,tmlicensesallowed,urlsused,urlsallowed,lilicensesused,lilicensesallowed
testing2,44032,43645,15,300,0,0,0,0,1,2