Difference between revisions of "M4 API quickstats get"
From Kolmisoft Wiki
Jump to navigationJump to search
Line 37: | Line 37: | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<page> | <page> | ||
<quickstats> | |||
<today> | |||
<calls>4</calls> | |||
<duration>345</duration> | |||
<revenue>1.4475</revenue> | |||
<self_cost>0.6725</self_cost> | |||
<profit>0.775</profit> | |||
<margin>54</margin> | |||
</today> | |||
<month> | |||
<calls>19</calls> | |||
<duration>2182</duration> | |||
<revenue>6.04</revenue> | |||
<self_cost>3.734166</self_cost> | |||
<profit>2.305834</profit> | |||
<margin>38</margin> | |||
</month> | |||
<active_calls> | |||
<total>0</total> | |||
<answered_calls>0</answered_calls> | |||
</active_calls> | |||
</quickstats> | |||
</page> | </page> | ||
Line 68: | Line 76: | ||
</status> | </status> | ||
<br><br> | <br><br> | ||
=See also= | =See also= | ||
* [[M2 API]] | * [[M2 API]] |
Revision as of 09:05, 8 August 2017
Description
Retrieves today's Quick Stats and Active Calls count
Data can be retrieved for the System Admin and a Simple User.
Usage
- M2 call: /api/quickstats_get
- Methods: POST, GET(if allowed, not recomended)
Parameters
- hash - SHA1 hash constructed using API_Secret_Key ( More described in Constructing hash). Required (if setting Disable hash checking is not checked).
- u - username for authentication. Required.
Note that u is included in to the HASH only if u is not the System Admin
Request
If API Secret Key = secret
You send:
HTML POST: http://<SERVER_IP>/billing/api/quickstats_get?u=admin&hash=e5e9fa1ba31ecd1ae84f75caaa474f3a663f05f4
* Note that username (u) is not included in the hash
Returns
Success: Everything is ok. You get the list of calls if there is any:
<?xml version="1.0" encoding="UTF-8"?> <page> <quickstats> <today> <calls>4</calls> <duration>345</duration> <revenue>1.4475</revenue> <self_cost>0.6725</self_cost> <profit>0.775</profit> <margin>54</margin> </today> <month> <calls>19</calls> <duration>2182</duration> <revenue>6.04</revenue> <self_cost>3.734166</self_cost> <profit>2.305834</profit> <margin>38</margin> </month> <active_calls> <total>0</total> <answered_calls>0</answered_calls> </active_calls> </quickstats> </page>
Errors:
- <error>API Requests are disabled</error> – Allow API globally setting is unchecked
- <error>GET Requests are disabled</error> – Allow GET API setting is unchecked
- <error>Access Denied</error> – user with such username cannot use this method
- <error>Bad login</error> – such username does not exist in the database or it was not specified
- <error>Incorrect hash</error> – Hash was not correct. Check API_Secret_Key and order or params while concatenating hash_string
- <error>Cannot connect to Elasticsearch</error> – data is not reachable
Example:
<status> <error>API Requests are disabled</error> </status>