Codelayer API Documentation

  • Introduction

    • General
  • API Reference

    • System

      • License request
      • Register Device
      • Authentication
    • Sales

      • Add Customer
      • Check Customer
      • Device Location
      • Master Place
      • Master Routes
      • Notification Details
      • Product Summary
      • Return details
      • Route Closing
      • Route Customers
      • Route Details
      • Route Path
      • Route Products
      • Route Products Return
      • Route Report
      • Route Return
      • Route Salesmen
      • Route Save
      • Route Save With Remarks
      • Route Shops
      • Sales Closing
      • Sales Details
      • Shop Limit Override Request
      • Stock Transfer
      • Update Device Token
      • Update Notifications
    • Response Codes
Codelayer API Documentation
Route Shops

Customer GPS details

URL

sales/route_shops

Method

POST

Request Media type

application/json

Response Media type

application/json

Request Parameters
Parameter Data Type Min Max M/O Sample Value Comments
key String 32 32 M Brulhv6KPIr4c6Ev2CfhM60z25Moi8Ef Key obtained from authentiaction.

 

Response Values
Name Data Type Min Length Max Length M/O Sample Value Comments
customer_details Array M
customer String M OLIVA CHALAKKUZHI
latitude Decimal M 9.0173483333333330
longitude Decimal M 76.9638783333333300
place String M CHALAKUZHI TVM I
rname String M TRIVANDRUM CITY-1
custcode Integer M 23136
placeid Integer M 626
placeorder Integer M 1
rid Integer M 3
sphone String M 7902337656

 

Sample Request
{
    "key": "QH7LlQ3wQMK9oYEKjeG5QOIVJQT4emeq"
}
Sample Success Response
{
    "customer_details": [
        {
            "customer": "OLIVA  CHALAKKUZHI",
            "latitude": "9.0173483333333330",
            "longitude": "76.9638783333333300",
            "place": "CHALAKUZHI TVM I",
            "rname": "TRIVANDRUM CITY-1",
            "custcode": "23136",
            "placeid": "626",
            "placeorder": "1",
            "rid": "3",
            "sphone": "7902337656"
        }
    ],
    "e": 200,
    "msg": "Success"
}