> For the complete documentation index, see [llms.txt](https://apidoc.webshippy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidoc.webshippy.com/webaruhaz-integraciok/dropshippy-price-change-api.md).

# Marketplace Price Change API

### Termék nagyker árak beállítása

| Mező               | Kötelező? | Leírás                                                |
| ------------------ | --------- | ----------------------------------------------------- |
| `apiKey`           | Igen      | Az API kulcs.                                         |
| `sku`              | Igen      | Az ármódosítással érintett termék sku-ja (cikkszáma). |
| `wholesalePrice`   | Igen      | A termék nagykereskedelmi ára (nettó).                |
| `recommendedPrice` | Igen      | A termék ajánlott fogyasztói ára (nettó).             |

**XML** esetén:

Url: <https://app.webshippy.com/wspyapi/DropshippyPriceChange/xml>

Kérés:

```
<?xml version="1.0" encoding="utf-8"?>
<request>
  <apiKey>api-key-comes-here</apiKey>
  <products>
    <sku>piros-polo</sku>
    <wholesalePrice>1000</wholesalePrice>
    <recommendedPrice>1700</recommendedPrice>
  </products>
  <products>
    <sku>zold-sapka</sku>
    <wholesalePrice>300</wholesalePrice>
    <recommendedPrice>800</recommendedPrice>
  </products>
</request>
```

Válasz (példa):

```
<?xml version="1.0" encoding="utf-8"?>
<response>
  <status>success</status>
  <message>
    <elem>2 records were processed.</elem>
    <elem>2 updates successful.</elem>
  </message>
  <products>
    <elem>
      <sku>piros-polo</sku>
      <message>Update successful.</message>
    </elem>
    <elem>
      <sku>zold-sapka</sku>
      <message>Update successful.</message>
    </elem>
  </products>
</response>
```

**JSON** esetén:

Url: [https://app.webshippy.com/wspyapi/DropshippyPriceChange/](https://app.webshippy.com/wspyapi/DropshippyPriceChange/xml)json

Kérés:

```
{
 "apiKey": "api-key-comes-here",
 "products": [ 
 {
 "sku": "piros-polo",
 "wholesalePrice": "1000",
 "recommendedPrice": "1700" 
},
 {
 "sku": "zold-sapka",
 "wholesalePrice": "300",
 "recommendedPrice": "800"
  } ]
}
```

Válasz (példa):

```
{
  "status": "success",
  "message": [
    "2 records were processed.",
    "2 updates successful."
  ],
  "products": [
    {
      "sku": "piros-polo",
      "message": "Update successful."
    },
    {
      "sku": "zold-sapka",
      "message": "Update successful."
    }
  ]
}
```

###

### Hibaüzenetek

Missing SKU. \
Property wholesalePrice missing. \
Property recommendedPrice missing. \
No price was provided. \
Product is not dropshipped or SKU doesn't exists. \
Incorrect price format, only positive numbers allowed!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://apidoc.webshippy.com/webaruhaz-integraciok/dropshippy-price-change-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
