Restful Api docs
Authentication
All methods require a valid account
access token.
Remember to keep your access token safe.
There are two kinds of access tokens:
- Account access token.
To get your access token you need to
login to your account
and go to:
Account settigs > API/Webhooks.
- Partner access token.
We offer a partner account for advertising agency and users that have more than one accounts to create a "super account"
that allows to create multiple accounts.
Partner account can create unlimited of accounts and get a commision from us and monthly discount to each account.
If you want to get a Partner account Contact us first.
Return types
All methods returns a clean valid JSON format.
Actions
Accounts
Stores
Partners
note: you need a partner access token to use this methods.
Examples
C#:
using (var client = new WebClient())
{
//Get account information
var response = client.DownloadString(https://api.wobily.com/Api/Accounts/Info?token=[YOUR-TOKEN-HERE]);
//Your code here
}