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: |
https://ponte.venice.be/webconnect/api/Demo/Article?Number=A110
Request header
See request header.
Request body
Structure
Request (object)
- Articles (array)
- Article (limited to one) (array item)
- Fields (object)
- Parts (array)
- Part (array item)
- Fields (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>