POST api/MantenimientoProductosUsuario
Request Information
URI Parameters
None.
Body Parameters
ParamMantProductosUsuario| Name | Description | Type | Additional information |
|---|---|---|---|
| IdProducto | string |
None. |
|
| IdUsuario | string |
None. |
|
| Accion | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdProducto": "sample string 1",
"IdUsuario": "sample string 2",
"Accion": "sample string 3"
}
application/xml, text/xml
Sample:
<ParamMantProductosUsuario xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Request"> <Accion>sample string 3</Accion> <IdProducto>sample string 1</IdProducto> <IdUsuario>sample string 2</IdUsuario> </ParamMantProductosUsuario>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| IsSuccess | boolean |
None. |
|
| UserMessage | string |
None. |
|
| TechMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"IsSuccess": true,
"UserMessage": "sample string 3",
"TechMessage": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Response"> <Data /> <IsSuccess>true</IsSuccess> <TechMessage>sample string 4</TechMessage> <UserMessage>sample string 3</UserMessage> </BaseResponse>