Difference between revisions of "M4 API devices get"

From Kolmisoft Wiki
Jump to navigationJump to search
(Created page with '=Description= MOR API Device list <br><br> =Usage= * From '''MOR X4''' call: '''/api/devices_get''' * For Backwards-compatibility old name 'device_list' is also usable. Cal…')
 
Line 5: Line 5:
=Usage=
=Usage=


* From '''MOR X4''' call: '''/api/devices_get'''
* From '''M2''' call: '''/api/devices_get'''
* For Backwards-compatibility old name 'device_list' is also usable. Call: '''/api/device_list'''
* For Backwards-compatibility old name 'device_list' is also usable. Call: '''/api/device_list'''
* Methods: POST, GET(if allowed, not recomended)
* Methods: POST, GET(if allowed, not recomended)
Line 58: Line 58:
=See also=
=See also=


* [[MOR API]]
* [[M2 API]]

Revision as of 09:28, 31 December 2015

Description

MOR API Device list

Usage

  • From M2 call: /api/devices_get
  • For Backwards-compatibility old name 'device_list' is also usable. Call: /api/device_list
  • Methods: POST, GET(if allowed, not recomended)



Parametres

  • u – username for authentication. Required.
  • user_id – this specifies user id whose device list to show.
  • hash – SHA1 hash constructed using user_id and API_Secret_Key ( More described in Constructing hash). Required.

Returning XML is put in file. That file is gziped and returned as a response content.

Please note that admin/reseller can retrieve Device list just for their own Users.

Request

We have API Secret Key = 456789, user_id = 100

We send:

HTML POST: http://<SERVER_IP>/billing/api/devices_get?u=admin&user_id=100&hash=71516eea4850f7e0300ac86adf9fb64bca845aa7

* Note that username and password are not included in hash

Returns

Success

<page>
  <devices>
    <device>
       <device_id>device_id</device_id>
       <device_type>device_type</device_type>
     </device>
     <device>
       <device_id>second_device_id</device_id>
       <device_type>second_device_type</device_type>
     </device>
   </devices>
 </page>




Errors

  • <error>User not found</error> – User was not found.
  • <error>user_id is empty</error> – user_id was not sent.
  • <error>Bad login</error> – User was not found by username and password. Use correct username and password. Make sure that username (u) and password (p) are specified.
  • <error>Incorrect hash</error> – Hash was not correct. Check API_Secret_Key and order or params while concatenating hash_string.



See also