Business Trade Finance

Retrieve a Trade Finance application

Returns the Trade Finance application specified in the request URL. Use this endpoint to display the status of the application to the customer.

get/v1/businesses/{business_id}/trade_finance_applications/{id}

Path parameters

business_idstring required

ID of the business that submitted the application.

idstring required

ID of the application.

Response

Successful result of the operation.

status_detailstring

Status details of the application

status'pending' | 'waiting_for_bussiness_identification' | 'cdd_pending' | 'successful_finished' | 'rejected' | 'deleted'

Status of the application

recipient_ibanstring

The IBAN of the recipient's account

partner_scorestring

Partner score

partner_reference_numberstring

Reference identifier at partner

partner_contact_numberstring

Number of the partner contact

partner_contact_namestring

Name of the partner contact

nominal_interest_ratenumber

The nominal interest rate to apply to the trade credit line, expressed as a value between 0.0 (i.e., 0%) and 1.0 (i.e., 100%) with up to four decimal places. For example, 0.01 would apply a nominal interest rate of 1% to the trade credit line.

identification_idstring

The ID of the associated business identification

idstring

The ID of the trade finance application

creditreform_scoreinteger

The creditreform score

creditreform_pdstring

The creditreform probability of default

application_datestring date

The date of the application

Example response

{
  "status": "pending",
  "requested_credit_line": {
    "value": 1000,
    "unit": "cents",
    "currency": "EUR"
  },
  "recipient_iban": "DE92370601930002130041",
  "partner_score": "4",
  "partner_reference_number": "3738dbd0-a547-4c11-99e7-770066a39292",
  "partner_contact_number": "123456789",
  "partner_contact_name": "Contact Name",
  "nominal_interest_rate": 0.02,
  "identification_id": "e876f41e9b8642bdaaff883ec2f0e144bid",
  "id": "55f39e2d78424ac9a9ad5b09adffece2btfa",
  "creditreform_score": 150,
  "creditreform_pd": "1.2",
  "application_date": "2019-08-24"
}