Skip to main content

Import Price

POST 

https://api.lochting.com/public/v1/price/import

This API endpoint allows authorized users to synchronize and push real-time price information, ensuring pricing accuracy across all channels.

Request

Header Parameters

    Authorization stringrequired
    Example: your-access-token

Bodyrequired

    replaceCurrentPricesbooleanrequired

    Before importing prices, remove all previously imported prices first

    productPrices object[]required

    Product prices

  • Array [
  • productCode objectrequired

    The unique product code

    typeProductCodeType (string)required

    The type of product code

    Possible values: [EanCode, GtinCode, CnkCode, Acl13Code, Cip13Code, CipOrAcl7Code, OspCode, PznCode, PznAustriaCode, UdiCode, CodeNational, PdkCode, SuklCode]

    Example: EanCode
    valuestringrequired

    The product code value

    Example: 1234567
    priceintegerrequired

    Price in cents

    vatRateintegerrequired

    Possible values: >= 0 and <= 100

    Example: 21
    promotionalPriceinteger

    Price in cents

  • ]

Responses

Accepted

Schema
    unresolvedProductCodes object[]required

    a list of product codes that could not be resolved by Lochting

  • Array [
  • typeProductCodeType (string)required

    The type of product code

    Possible values: [EanCode, GtinCode, CnkCode, Acl13Code, Cip13Code, CipOrAcl7Code, OspCode, PznCode, PznAustriaCode, UdiCode, CodeNational, PdkCode, SuklCode]

    Example: EanCode
    valuestringrequired
    Example: 1234567
  • ]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.lochting.com/public/v1/price/import");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"replaceCurrentPrices\": true,\n \"productPrices\": [\n {\n \"productCode\": {\n \"type\": \"EanCode\",\n \"value\": \"1234567\"\n },\n \"price\": 0,\n \"vatRate\": 21,\n \"promotionalPrice\": 0\n }\n ]\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.lochting.com/public/v1
Parameters
— headerrequired
Body required
{
  "replaceCurrentPrices": true,
  "productPrices": [
    {
      "productCode": {
        "type": "EanCode",
        "value": "1234567"
      },
      "price": 0,
      "vatRate": 21,
      "promotionalPrice": 0
    }
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!