Restful Api docs
First of all... Authentication
All methods require a valid accountaccess 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 offering 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 Cashcow and monthly discount to each account.
If you want to get a Partner account please Contact us first.
- Encoding: UTF-8
- For Httpost methods use content-type : "application/json".
Return types
All methods returns a clean valid JSON format.
Accounts
-
/Accounts/Info
Get account information (phone, email, address, logo image...).
Stores
Products
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.cashcow.co.il/Api/Accounts/Info?token=[YOUR-TOKEN-HERE]);
//Your code here
}