POST api/ArchivaCotizacion
Request Information
URI Parameters
None.
Body Parameters
ParamArchivaCotizacionName | Description | Type | Additional information |
---|---|---|---|
IdCotizacion | string |
None. |
|
IdUsuario | string |
None. |
|
Archiva | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "IdCotizacion": "sample string 1", "IdUsuario": "sample string 2", "Archiva": 3 }
application/xml, text/xml
Sample:
<ParamArchivaCotizacion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub_API.Models.Request"> <Archiva>3</Archiva> <IdCotizacion>sample string 1</IdCotizacion> <IdUsuario>sample string 2</IdUsuario> </ParamArchivaCotizacion>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponseName | 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>