Account/Get
Description: Obtain information on an account.
Example of function call:
http://api.nimbb.com/Account/Get.aspx?email=EMAIL&pwd=PASSWORD
where you replace the values:
EMAIL: email address;
PASSWORD: password.
Example of XML response:
<?xml version="1.0" encoding="utf-8" ?>
<nimbb version="1">
<account>
<email>account@email</email>
<publicKey>XXXXXXXXXX</publicKey>
<privateKey>YYYYYYYYYY</privateKey>
<totalVideos>1024</totalVideos>
<subscriptionType>Gold</subscriptionType>
<subscriptionEndDate>2012-05-25T11:58:34.54-04:00</subscriptionEndDate>
<apiVideos>467</apiVideos>
</account>
</nimbb>
Note:
totalVideos: total videos created by the account;
subscriptionType: possible values are "Bronze", "Silver", "Gold", "Platinum", "Corporate" and "Unlimited";
subscriptionEndDate: if subscription do not expires (auto-renew), then returned date is "0001-01-01T05:00:00-05:00";
apiVideos: total videos left to use for the Nimbb API.
Go back to Web Service documentation.