GET api/NvoccComprobantes/ComprobanteVenta/{numero}/{tipo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| numero |
. |
string |
Required |
| tipo |
. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiResponseOfArchivo| Name | Description | Type | Additional information |
|---|---|---|---|
| Success |
. |
boolean |
None. |
| Message |
. |
string |
None. |
| Result |
. |
Archivo |
None. |
| ResultList |
. |
Collection of Archivo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Result": {
"nombre": "sample string 1",
"data": "QEA=",
"dataType": "sample string 2"
},
"ResultList": [
{
"nombre": "sample string 1",
"data": "QEA=",
"dataType": "sample string 2"
},
{
"nombre": "sample string 1",
"data": "QEA=",
"dataType": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<ApiResponseOfArchivo1kK89i_PO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClimberApi.Models">
<Message>sample string 2</Message>
<Result>
<data>QEA=</data>
<dataType>sample string 2</dataType>
<nombre>sample string 1</nombre>
</Result>
<ResultList>
<Archivo>
<data>QEA=</data>
<dataType>sample string 2</dataType>
<nombre>sample string 1</nombre>
</Archivo>
<Archivo>
<data>QEA=</data>
<dataType>sample string 2</dataType>
<nombre>sample string 1</nombre>
</Archivo>
</ResultList>
<Success>true</Success>
</ApiResponseOfArchivo1kK89i_PO>