POST api/CompanyBorrower/v1/GetPurchaseInvoiceFundingContractStatus
Request Information
URI Parameters
None.
Body Parameters
GetPurchaseInvoiceFundingContractStatusRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| contractId | globally unique identifier |
None. |
|
| OrganizationCode | string |
None. |
|
| UserName | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"contractId": "45d0c06f-c2d1-462b-9bca-5de631b05951",
"OrganizationCode": "sample string 2",
"UserName": "sample string 3",
"Password": "sample string 4"
}
application/xml, text/xml
Sample:
<GetPurchaseInvoiceFundingContractStatusRequest 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> <contractId>45d0c06f-c2d1-462b-9bca-5de631b05951</contractId> </GetPurchaseInvoiceFundingContractStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetPurchaseInvoiceFundingContractStatusReply| Name | Description | Type | Additional information |
|---|---|---|---|
| Reply | PurchaseInvoiceFundingContractStatus |
None. |
|
| Ok | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| ErrorCode | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Reply": {
"ContractId": "f75f8ebf-a2cd-4a20-8565-59b0c6ddda14",
"IsApproved": true,
"RejectionReasonMessage": "sample string 3",
"RejectionReasonCode": "sample string 4",
"SignatureTime": "2025-11-04T17:32:17.0670415+00:00",
"CreditLimit": 5.0,
"OpenCreditLimit": 6.0
},
"Ok": true,
"ErrorMessage": "sample string 2",
"ErrorCode": "sample string 3",
"Message": "sample string 4"
}
application/xml, text/xml
Sample:
<GetPurchaseInvoiceFundingContractStatusReply 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>
<ContractId>f75f8ebf-a2cd-4a20-8565-59b0c6ddda14</ContractId>
<CreditLimit>5</CreditLimit>
<IsApproved>true</IsApproved>
<OpenCreditLimit>6</OpenCreditLimit>
<RejectionReasonCode>sample string 4</RejectionReasonCode>
<RejectionReasonMessage>sample string 3</RejectionReasonMessage>
<SignatureTime>2025-11-04T17:32:17.0670415+00:00</SignatureTime>
</Reply>
</GetPurchaseInvoiceFundingContractStatusReply>