POST api/CompanyBorrower/v1/GetPurhaseInvoiceFundingOffer
Request Information
URI Parameters
None.
Body Parameters
GetPurhaseInvoiceFundingOfferRequestName | Description | Type | Additional information |
---|---|---|---|
bic | string |
None. |
|
contractId | globally unique identifier |
None. |
|
amount | decimal number |
None. |
|
OrganizationCode | string |
None. |
|
UserName | string |
None. |
|
Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "bic": "sample string 1", "contractId": "676500fd-84f4-4d30-b36c-b0c7f6a7530e", "amount": 2.0, "OrganizationCode": "sample string 3", "UserName": "sample string 4", "Password": "sample string 5" }
application/xml, text/xml
Sample:
<GetPurhaseInvoiceFundingOfferRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers"> <OrganizationCode>sample string 3</OrganizationCode> <Password>sample string 5</Password> <UserName>sample string 4</UserName> <amount>2</amount> <bic>sample string 1</bic> <contractId>676500fd-84f4-4d30-b36c-b0c7f6a7530e</contractId> </GetPurhaseInvoiceFundingOfferRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetPurhaseInvoiceFundingOfferReplyName | Description | Type | Additional information |
---|---|---|---|
Reply | PurchaseInvoiceFundingOffer |
None. |
|
Ok | boolean |
None. |
|
ErrorMessage | string |
None. |
|
ErrorCode | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Reply": { "ContractId": "e8265120-528d-481e-b433-78134d4fee20", "OfferRows": [] }, "Ok": true, "ErrorMessage": "sample string 2", "ErrorCode": "sample string 3", "Message": "sample string 4" }
application/xml, text/xml
Sample:
<GetPurhaseInvoiceFundingOfferReply 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>e8265120-528d-481e-b433-78134d4fee20</ContractId> <OfferRows /> </Reply> </GetPurhaseInvoiceFundingOfferReply>