GetInvoiceHistory
Description
Using this method we want to receive the outstanding invoices of the given customer.
Note that the invoices should be returned in reversed order. The invoice history is shown on the shop in a paged manner. The first page contains the most recent invoices with the latest invoice on top of the list.
The default number of invoices on a page can be set to 20. Note that the the shop's design may define a different number so it is wise to make this parameter configurable.
SOAP API:
Action
http://shoxl.com/ShoxlService/GetInvoiceHistory
Style
Document
Input (Literal)
The input of this method is the document element tns:GetInvoiceHistory having the structure defined by the following table.
Element
Type
Occurs
Description
Sequence
1..1
request
tns:GetInvoiceHistoryRequest
0..1
Complex Type: tns:GetInvoiceHistoryRequest
Description
The GetInvoiceHistoryRequest contains all the information to get the outstanding
invoices of the customer.
Component
Type
Occurs
Description
Sequence
1..1
AccountNumber
s:string
1..1
This is the (project) account number of the customer.
PageNumber
s:int
0..1
The number of the page. The page numbering is 1-based: first page has number 1.
Output (Literal)
The output of this method is the document element tns:GetInvoiceHistoryResponse having the structure defined by the following table.
Element
Type
Occurs
Description
Sequence
1..1
GetInvoiceHistoryResult
tns:GetInvoiceHistoryResult
0..1
Complex Type: tns:GetInvoiceHistoryResult
Description
The GetInvoiceHistoryResult contains all the outstanding invoices of the given
customer.
Complex Type: tns:ArrayfInvoiceHistoryItem
Complex Type: tns:InvoiceHistoryItem
A InvoiceHistoryItem contains the main information of an invoice from the ERP system.
REST API:
URL: /Shoxl/v1/GetInvoiceHistory Method: POST
Request body:
GetInvoiceHistoryRequest{
}
Example:
Response body:
GetInvoiceHistoryResult{
parameter
value
errorCode
string nullable: true
errorDescription
string nullable: true
orders
[InvoiceHistoryItem]
request
GetInvoiceHistoryRequest
totalPages
integer($int32)
}
InvoiceHistoryItem{
parameter
value
customerNumber
string required
downloadablePdfUri
string nullable: true
invoiceDate
string($date-time)
invoiceNumber
string required
totalOutstanding
number($double)
nullable: true
totalPrice
number($double)
nullable: true
}
Example:
Last updated
Was this helpful?