Business Trade Finance
Create trade
Creates a trade. Note that you must upload the documents related to the trade using the POST Upload business document endpoint and then attach them to the trade using the POST Add document to trade endpoint.
post/v1/businesses/{business_id}/trade_credit_line/trades
Path parameters
business_idstring required
Business ID
Request body
Example request
{
"trade_purpose": "Buy machinery",
"trade_origin_country": "DE",
"trade_company_website": "example.com",
"trade_company_registration": "ACME-123",
"trade_company_name": "Acme",
"trade_company_address": "Fake street 1A, 10178 Berlin",
"seller_bank_account_details": {
"iban": "DE82110101004206642492",
"description": "seller description"
},
"requested_trade_currency": "USD",
"requested_payout_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"reason_for_extension": "A reason",
"partner_score": "A",
"partner_reviewer": "Partner Reviewer",
"original_invoice_number": "ABC123",
"original_invoice_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"order_reference": "32b4ad38e6984b65808c83c6633a5758",
"invoice_date": "2019-08-24",
"incoterm": "CFR",
"fx_rate": 10.32,
"financing_term": 30,
"business_trade_no": "f8978c7d14f7495f802a6cfd5c04fba7"
}Response
The trade was successfully created.
Example response
{
"trade_purpose": "Buy machinery",
"trade_origin_country": "DE",
"trade_company_website": "example.com",
"trade_company_registration": "ACME-123",
"trade_company_name": "Acme",
"trade_company_address": "Fake street 1A, 10178 Berlin",
"status": "approved",
"seller_bank_account_details": {
"iban": "DE82110101004206642492",
"description": "seller description"
},
"requested_trade_currency": "USD",
"requested_payout_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"reason_for_extension": "A reason",
"partner_score": "A",
"partner_reviewer": "Partner Reviewer",
"original_invoice_number": "ABC123",
"original_invoice_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"order_reference": "32b4ad38e6984b65808c83c6633a5758",
"invoice_date": "2019-08-24",
"incoterm": "CFR",
"id": "722e12c6f2254972a1b70de6b07f6dacbtra",
"fx_rate": 10.32,
"financing_term": 30,
"documents": [
{
"type": "invoice",
"document_id": "string"
}
],
"business_trade_no": "f8978c7d14f7495f802a6cfd5c04fba7",
"beneficiary_id": "ABCDEF"
}