GET api/User/GetInvoicesById
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ResultOfIEnumerableOfInvoiceName | Description | Type | Additional information |
---|---|---|---|
Error | boolean |
None. |
|
Ok | boolean |
None. |
|
Errors | Collection of Error |
None. |
|
Data | Collection of Invoice |
None. |
Response Formats
application/json, text/json
Sample:
{ "Error": false, "Ok": true, "Errors": [ { "Id": "sample string 1", "Entity": "sample string 2", "Message": "sample string 3" }, { "Id": "sample string 1", "Entity": "sample string 2", "Message": "sample string 3" } ], "Data": [ { "OrderID": "sample string 1", "DateAdded": "2025-07-17T06:28:29.1498428-04:00", "Url": "sample string 3" }, { "OrderID": "sample string 1", "DateAdded": "2025-07-17T06:28:29.1498428-04:00", "Url": "sample string 3" } ] }
application/xml, text/xml
Sample:
<ResultOfArrayOfInvoicewnekxRBL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/A2.Jbl.Api.Models"> <Data> <Invoice> <DateAdded>2025-07-17T06:28:29.1498428-04:00</DateAdded> <OrderID>sample string 1</OrderID> <Url>sample string 3</Url> </Invoice> <Invoice> <DateAdded>2025-07-17T06:28:29.1498428-04:00</DateAdded> <OrderID>sample string 1</OrderID> <Url>sample string 3</Url> </Invoice> </Data> <Error>false</Error> <Errors> <Error> <Entity>sample string 2</Entity> <Id>sample string 1</Id> <Message>sample string 3</Message> </Error> <Error> <Entity>sample string 2</Entity> <Id>sample string 1</Id> <Message>sample string 3</Message> </Error> </Errors> <Ok>true</Ok> </ResultOfArrayOfInvoicewnekxRBL>