POST api/CompanyBorrower/v1/GetSalesInvoiceFundingInvoiceStatus
Request Information
URI Parameters
None.
Body Parameters
GetSalesInvoiceFundingInvoiceStatusRequest| 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": "bfe0603f-7669-4de0-a52a-45d2e0df4c3d",
"OrganizationCode": "sample string 2",
"UserName": "sample string 3",
"Password": "sample string 4"
}
application/xml, text/xml
Sample:
<GetSalesInvoiceFundingInvoiceStatusRequest 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>bfe0603f-7669-4de0-a52a-45d2e0df4c3d</invoiceId> </GetSalesInvoiceFundingInvoiceStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetSalesInvoiceFundingInvoiceStatusReply| Name | Description | Type | Additional information |
|---|---|---|---|
| Reply | SalesInvoiceFundingInvoiceStatus |
None. |
|
| Ok | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| ErrorCode | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Reply": {
"InvoiceId": "f0fc4053-70bf-43d0-9988-7c9be502690f",
"IsApproved": true,
"RejectionReasonMessage": "sample string 3",
"RejectionReasonCode": "sample string 4",
"DisbursementTime": "2026-03-11T09:41:13.362237+00:00"
},
"Ok": true,
"ErrorMessage": "sample string 2",
"ErrorCode": "sample string 3",
"Message": "sample string 4"
}
application/xml, text/xml
Sample:
<GetSalesInvoiceFundingInvoiceStatusReply 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-03-11T09:41:13.362237+00:00</DisbursementTime>
<InvoiceId>f0fc4053-70bf-43d0-9988-7c9be502690f</InvoiceId>
<IsApproved>true</IsApproved>
<RejectionReasonCode>sample string 4</RejectionReasonCode>
<RejectionReasonMessage>sample string 3</RejectionReasonMessage>
</Reply>
</GetSalesInvoiceFundingInvoiceStatusReply>