GET api/Factura?token={token}&idfactura={idfactura}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| idfactura | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Factura| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
None. |
|
| message | string |
None. |
|
| facturaPDF | MemoryStream |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"message": "sample string 2",
"facturaPDF": null
}
text/html
Sample:
{"code":"sample string 1","message":"sample string 2","facturaPDF":null}
application/xml, text/xml
Sample:
<Factura xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPICEOE.Controllers"> <code>sample string 1</code> <facturaPDF xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.IO" i:nil="true" /> <message>sample string 2</message> </Factura>