POST api/{database}/ProcessOrderCommand?journalId={journalId}&fiscalYear={fiscalYear}&periodNumber={periodNumber}&invoiceDate={invoiceDate}&orderId={orderId}&journalTransaction={journalTransaction}
Execute the ProcessOrderCommand
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
journalId | The journalId. |
Define this parameter in the request URI. |
fiscalYear | The fiscalYear. |
Define this parameter in the request URI. |
periodNumber | The periodNumber. |
Define this parameter in the request URI. |
invoiceDate | The invoiceDate. |
Define this parameter in the request URI. |
orderId | The orderId. |
Define this parameter in the request URI. |
journalTransaction | The journalTransaction. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "error": "sample string 1", "fiscalYear": 2, "invoiceDate": "sample string 3", "journalId": "sample string 4", "journalTransaction": 5, "orderId": "sample string 6", "periodNumber": 7 }
application/xml, text/xml
Sample:
<ProcessOrderCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.Sales.Commands"> <Error>sample string 1</Error> <FiscalYear>2</FiscalYear> <InvoiceDate>sample string 3</InvoiceDate> <JournalId>sample string 4</JournalId> <JournalTransaction>5</JournalTransaction> <OrderId>sample string 6</OrderId> <PeriodNumber>7</PeriodNumber> </ProcessOrderCommand>