latestOpenAPI 3.0.02026-08-102737124.3 KB

06b62340347d

Consumer Credit Line

Index all credit line applications

Returns an array of all credit line applications for all of your customers.

get/v1/persons/credit_line_applications

Query parameters

page[number]integer

The number of result pages to return.

page[size]integer

The size of each result page (maximum amount of results) to return.

filter[person_id]string

Filter results by person_id.

filter[id]string

Filter results by application_id

filter[credit_line_id]string

Filter results by credit_line_id.

filter[status]string

Filter results by the application status

filter[application_date_min]string

Filter results by the minimum date when the application was created.

filter[application_date_max]string

Filter results by the maximum date when the application was created.

filter[credit_line_amount]integer

Filter results by the credit_line_amount.

Response

ConsumerCreditLineWeb.ListCreditLineApplicationsResponse

status'initial_scoring_pending' | 'account_snapshot_pending' | 'account_snapshot_verification_pending' | 'identification_pending' | 'offered' | 'esign_pending' | 'esign_complete' | 'esign_failed' | 'credit_line_creation_pending' | 'credit_line_created' | 'expired' | 'deleted' | 'rejected' required

The status of a consumer credit line application.

person_idstring required

The person ID of the customer applying for the credit line.

idstring required

The unique ID of a consumer credit line application.

credit_line_idstring

The unique ID of a credit line, generated after a credit line is created.

created_atstring required

The timestamp from when the credit line was created.

Example response

[
  {
    "status": "credit_line_created",
    "person_id": "dc1a6812a14f6cc338cd084208535bcdcper",
    "limit": {
      "currency": "EUR",
      "unit": "cents",
      "value": 1000
    },
    "id": "35eee37033c5436f9cbff6df1f88e097ccla",
    "credit_line_id": "1908331fb8384edcbfe63067366c4b6accln",
    "created_at": "2022-02-07T11:57:42"
  }
]