PATCH product/{productid}/ean
Update a products EAN by product ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
productid | The product ID to update | integer | Required |
Body Parameters
The object containing the EAN to update
EANPatchModel
Name | Description | Type | Additional information |
---|---|---|---|
EAN | This contains the EAN for a product | string | None. |
Request Formats
application/json, text/json
Sample:
{ "EAN": "123456" }
application/xml, text/xml
Sample:
<EANPatchModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EAN>123456</EAN> </EANPatchModel>
Response Information
Resource Description
Update a products EAN by product ID
EANPatchModelName | Description | Type | Additional information |
---|---|---|---|
EAN | This contains the EAN for a product | string | None. |
Response Formats
application/json, text/json
Sample:
{ "EAN": "123456" }
application/xml, text/xml
Sample:
<EANPatchModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EAN>123456</EAN> </EANPatchModel>