POST api/CompanyBorrower/v1/GetSalesInvoiceFundingContractStatus
Request Information
URI Parameters
None.
Body Parameters
GetSalesInvoiceFundingContractStatusRequestName | 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": "5795c2aa-baf7-4a11-b007-4cab41736315", "OrganizationCode": "sample string 2", "UserName": "sample string 3", "Password": "sample string 4" }
application/xml, text/xml
Sample:
<GetSalesInvoiceFundingContractStatusRequest 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>5795c2aa-baf7-4a11-b007-4cab41736315</contractId> </GetSalesInvoiceFundingContractStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetSalesInvoiceFundingContractStatusReplyName | Description | Type | Additional information |
---|---|---|---|
Reply | SalesInvoiceFundingContractStatus |
None. |
|
Ok | boolean |
None. |
|
ErrorMessage | string |
None. |
|
ErrorCode | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Reply": { "ContractId": "7c7fe850-b32a-4d8b-b042-36fd6422469a", "IsApproved": true, "RejectionReasonMessage": "sample string 3", "RejectionReasonCode": "sample string 4", "SignatureTime": "2025-09-01T13:18:26.2207731+00:00" }, "Ok": true, "ErrorMessage": "sample string 2", "ErrorCode": "sample string 3", "Message": "sample string 4" }
application/xml, text/xml
Sample:
<GetSalesInvoiceFundingContractStatusReply 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>7c7fe850-b32a-4d8b-b042-36fd6422469a</ContractId> <IsApproved>true</IsApproved> <RejectionReasonCode>sample string 4</RejectionReasonCode> <RejectionReasonMessage>sample string 3</RejectionReasonMessage> <SignatureTime>2025-09-01T13:18:26.2207731+00:00</SignatureTime> </Reply> </GetSalesInvoiceFundingContractStatusReply>