GET api/integration/UpdateUserProduct?userId={userId}&apiKey={apiKey}&id={id}&stock={stock}&unitPrice={unitPrice}&quantityLimit={quantityLimit}&postMatureDate={postMatureDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
|
| apiKey | globally unique identifier |
Required |
|
| id | integer |
Required |
|
| stock | integer |
Default value is 0 |
|
| unitPrice | decimal number |
Default value is 0 |
|
| quantityLimit | integer |
Default value is 0 |
|
| postMatureDate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
ServiceResponseOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | string |
None. |
|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": "sample string 1",
"Success": true,
"ErrorMessage": "sample string 3"
}
application/xml, text/xml
Sample:
<ServiceResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model"> <ErrorMessage>sample string 3</ErrorMessage> <Success>true</Success> <Result>sample string 1</Result> </ServiceResponseOfstring>