Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Inbound | GET | /push/client-channel/locations

Summary

This API is used to fetch location details for a given location code mapped to a channel in Increff system.

Description

Front-end system can call this API to get details of a location which is mapped to a channel in Increff system.

These details can be further used by the front-end system to improve the customer experience during pre-order and post order phases.

Request

Empty

Response

Code Block
languagejson
{
  "locationData": [
    {
      "locationCode": "string",
      "cimsLocationId": 0,
      "omsLocationId": 0,
      "channelWarehouseId":"string",
      "locationAddress": {
        "city": "Banglore",
        "contact_email": "rahul@increff.com",
        "contact_name": "Rahul",
        "contact_phone": "9988998899",
        "country": "INDIA",
        "state": "KA",
        "street1": "1",
        "street2": "2",
        "street3": "3",
        "zip": "560102"
      },
      "locationType": "STORE"
    }
  ]
}

...