GET Api/GetOpenInvoice
Request Information
URI Parameters
None.
Body Parameters
InvoiceRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PrjPaymentInfoID | string |
None. |
|
| ProjectLedgerID | integer |
None. |
|
| AmountReceived | string |
None. |
|
| FK_ProjectInvoiceID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PrjPaymentInfoID": "sample string 1",
"ProjectLedgerID": 2,
"AmountReceived": "sample string 3",
"FK_ProjectInvoiceID": 4
}
application/xml, text/xml
Sample:
<InvoiceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VITPaymentAPI.Models"> <AmountReceived>sample string 3</AmountReceived> <FK_ProjectInvoiceID>4</FK_ProjectInvoiceID> <PrjPaymentInfoID>sample string 1</PrjPaymentInfoID> <ProjectLedgerID>2</ProjectLedgerID> </InvoiceRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MassageModal| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Code | integer |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"Code": 2,
"Message": "sample string 3",
"Data": {}
}
application/xml, text/xml
Sample:
<MassageModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VITPaymentAPI.Models"> <Code>2</Code> <Data /> <Message>sample string 3</Message> <Status>sample string 1</Status> </MassageModal>