Import Price
POSThttps://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
- application/json
Bodyrequired
replaceCurrentPricesbooleanrequired
Before importing prices, remove all previously imported prices first
productPrices object[]required
Responses
- 202
- 401
Accepted
- application/json
- Schema
- Example (auto)
Schema
unresolvedProductCodes object[]required
{
"unresolvedProductCodes": [
{
"type": "EanCode",
"value": "1234567"
}
]
}
Unauthorized
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear