Introduction
The purpose of this service is to save new products to Vision database,
Request
Request URL POST : https://<pathtoapi>/service/ProductCode
POST Body structure : PC XML Structure
Expand | |||||
---|---|---|---|---|---|
| |||||
|
Response
Response body will have new tag <RES> attached with input XML which will have information about the response.
...
Code will be 200 or 400, 200 is for success, if the code is 400 node <Message> will have reason for failure
HTTP Response Codes
Code | Message |
---|---|
200 | OK, All request processed |
406 | Input XML validation failed, response body will have reason for failure |
429 | API access restricted (Exceeded the rate limit / access not allowed) |
207 | Multi-Status, <RES> tag have more information |
400 | Request processing all record failed, <RES> tag have more information |
Response samples
Code : 200
Code Block | ||
---|---|---|
| ||
<PRODUCTS> <PC> <HD> <ProductCode>PRO1</ProductCode> </HD> <RES> <Code>200</Code> <Message>ProductCode processed</Message> </RES> </PC> <PC> <HD> <ProductCode>PRO2</ProductCode> </HD> <RES> <Code>200</Code> <Message>ProductCode processed</Message> </RES> </PC> </PRODUCTS> |
Code : 207
Code Block | ||
---|---|---|
| ||
<PRODUCTS> <PC> <HD> <ProductCode>PRO1</ProductCode> </HD> <RES> <Code>200</Code> <Message>ProductCode processed</Message> </RES> </PC> <PC> <HD> <ProductCode>PRO2</ProductCode> </HD> <RES> <Code>400</Code> <Message>Validation failure occurred on line: 1 Product Code is mandatory</Message> </RES> </PC> </PRODUCTS> |
Code : 400
Code Block | ||
---|---|---|
| ||
<PRODUCTS> <PC> <HD> <ProductCode>PRO1</ProductCode> </HD> <RES> <Code>400</Code> <Message>Validation failure occurred on line: 1 Product Code is mandatory</Message> </RES> </PC> <PC> <HD> <ProductCode>PRO2</ProductCode> </HD> <RES> <Code>400</Code> <Message>Validation failure occurred on line: 1 Product Code is mandatory</Message> </RES> </PC> </PRODUCTS> |
Code : 406 Response Body
Code Block |
---|
Failed validation because field 'SiteCode' exceeded the maximum number of characters allowed. |
...