Litelead-mcp

getOrderLocations

Retrieve the list of configured order locations.

Input Schema

None

Output Schema

{
  "locations": [
    {
      "label": {
        "en-US": "New York Office",
        "de-DE": "Büro New York"
      },
      "value": "loc_123"
    }
  ]
}

Example Usage

const result = await client.getOrderLocations({});
console.log(result.locations);