POST api/Patente/EnviarResultadoTramiteVUI
Request Information
URI Parameters
None.
Body Parameters
clsTramitesPatente| Name | Description | Type | Additional information |
|---|---|---|---|
| Ambiente | string |
None. |
|
| Token | string |
None. |
|
| referencia | string |
None. |
|
| estadoTramite | integer |
None. |
|
| observaciones | string |
None. |
|
| tasacion | decimal number |
None. |
|
| requiereconsejo | integer |
None. |
|
| documento | string |
None. |
|
| NumeroPatente | string |
None. |
|
| bucle | integer |
None. |
|
| Exonerado | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Ambiente": "sample string 1",
"Token": "sample string 2",
"referencia": "sample string 3",
"estadoTramite": 4,
"observaciones": "sample string 5",
"tasacion": 6.0,
"requiereconsejo": 7,
"documento": "sample string 8",
"NumeroPatente": "sample string 9",
"bucle": 10,
"Exonerado": true
}
application/xml, text/xml
Sample:
<clsTramitesPatente xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_PROCOMER_Entities"> <Ambiente>sample string 1</Ambiente> <Exonerado>true</Exonerado> <NumeroPatente>sample string 9</NumeroPatente> <Token>sample string 2</Token> <bucle>10</bucle> <documento>sample string 8</documento> <estadoTramite>4</estadoTramite> <observaciones>sample string 5</observaciones> <referencia>sample string 3</referencia> <requiereconsejo>7</requiereconsejo> <tasacion>6</tasacion> </clsTramitesPatente>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| ReturnedCode | integer |
None. |
|
| Message | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"ReturnedCode": 2,
"Message": "sample string 3",
"Result": {}
}
application/xml, text/xml
Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_PROCOMER_Entities"> <IsSuccess>true</IsSuccess> <Message>sample string 3</Message> <Result /> <ReturnedCode>2</ReturnedCode> </ApiResponse>