Service Name          Get Printers List
Service Method       GET
Service URL              /scanprints/printers

Query Parameters
location = <location code>                           (String)
query = <search on "name" of printer>     (String)
page = <default is 1>                                     (Int)
per_page = <default is 10>                           (Int)

Response Data (JSON)
{
"pagination": {
"current_page": 1,
"per_page": 10,
"total_entries": 2

},
"printers": [

{
"id": 1,
"name": "ZD500 Front Room",
"ip": "192.168.0.1",
"port": "8080"

},
{

"id": 2,
"name": "ZD500 Back Room",
"ip": "192.168.0.2",
"port": "8080"

}
]
}