POST api/CompanyBorrower/v1/GetPurchaseInvoiceFundingInvoiceStatus
Request Information
URI Parameters
None.
Body Parameters
GetPurchaseInvoiceFundingInvoiceStatusRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| invoiceId | globally unique identifier |
None. |
|
| OrganizationCode | string |
None. |
|
| UserName | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"invoiceId": "9a38d236-1f9a-4dc8-94e9-9ac1e64d466b",
"OrganizationCode": "sample string 2",
"UserName": "sample string 3",
"Password": "sample string 4"
}
application/xml, text/xml
Sample:
<GetPurchaseInvoiceFundingInvoiceStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers"> <OrganizationCode>sample string 2</OrganizationCode> <Password>sample string 4</Password> <UserName>sample string 3</UserName> <invoiceId>9a38d236-1f9a-4dc8-94e9-9ac1e64d466b</invoiceId> </GetPurchaseInvoiceFundingInvoiceStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetPurchaseInvoiceFundingInvoiceStatusReply| Name | Description | Type | Additional information |
|---|---|---|---|
| Reply | PurchaseInvoiceFundingInvoiceStatus |
None. |
|
| Ok | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| ErrorCode | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Reply": {
"InvoiceId": "6f06e3c4-2d27-4429-8753-057b8066a945",
"IsApproved": true,
"RejectionReasonMessage": "sample string 3",
"RejectionReasonCode": "sample string 4",
"DisbursementTime": "2026-04-15T10:01:00.9387055+00:00"
},
"Ok": true,
"ErrorMessage": "sample string 2",
"ErrorCode": "sample string 3",
"Message": "sample string 4"
}
application/xml, text/xml
Sample:
<GetPurchaseInvoiceFundingInvoiceStatusReply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">
<ErrorCode>sample string 3</ErrorCode>
<ErrorMessage>sample string 2</ErrorMessage>
<Message>sample string 4</Message>
<Ok>true</Ok>
<Reply>
<DisbursementTime>2026-04-15T10:01:00.9387055+00:00</DisbursementTime>
<InvoiceId>6f06e3c4-2d27-4429-8753-057b8066a945</InvoiceId>
<IsApproved>true</IsApproved>
<RejectionReasonCode>sample string 4</RejectionReasonCode>
<RejectionReasonMessage>sample string 3</RejectionReasonMessage>
</Reply>
</GetPurchaseInvoiceFundingInvoiceStatusReply>