Update article card

You use this method to update an article card.

Request method

PUT

Request url

https://ponte.venice.be/webconnect/api/{DossierId}/Article?{Key}={KeyValues}

Context identification

Identification Description
DossierId The unique identifier of the dossier.

Parameters

Parameter Description
{Key} The available keys to seek one or more articles:
  • SystemNumber={SystemNumber}: Seek article card by system number.
  • Number={Number}: Seek article card by number.
  • Barcode={Barcode}: Seek article card by barcode.
  • SyncReference={SyncReference}: Seek article card by synchronization reference.
Example: Update the article card with number 'A110' in dossier 'Demo' and set the sales price to 99,00.
https://ponte.venice.be/webconnect/api/Demo/Article?Number=A110

Request header

See request header.

Request body

Structure

Request (object)

Examples

{
  "Request": {
    "Articles": {
      "Article": [
        {
          "Fields" : {
            "SalesPrice": "99.00"
          }
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
  <Articles>
    <Article>
      <Fields>
        <SalesPrice>99.00</SalesPrice>
      </Fields>
    </Article>
  </Articles>
</Request>

Http status

See http status.

Response body

-