# Index all credit line applications Returns an array of all credit line applications for all of your customers. Endpoint: GET /v1/persons/credit_line_applications Version: 1.0 ## 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 200 fields (application/json): - `id` (string, required) The unique ID of a consumer credit line application. Example: "35eee37033c5436f9cbff6df1f88e097ccla" - `person_id` (string, required) The person ID of the customer applying for the credit line. Example: "dc1a6812a14f6cc338cd084208535bcdcper" - `status` (string, required) The status of a consumer credit line application. Enum: "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" - `created_at` (string, required) The timestamp from when the credit line was created. Example: "2022-02-07T11:57:42" - `limit` (object,null) The limit of the credit line. Example: {"currency":"EUR","unit":"cents","value":1000} - `limit.value` (integer, required) The amount value Example: 1000 - `limit.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `limit.unit` (string, required) The unit of the given value. Enum: "cents" - `credit_line_id` (string) The unique ID of a credit line, generated after a credit line is created. Example: "1908331fb8384edcbfe63067366c4b6accln" ## Response 400 fields (application/json): - `code` (string) Example: "build_pagination_headers_failure" - `detail` (string) Example: "Cannot connect to database." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "400" - `title` (string) Example: "Failed to build pagination headers." ## Response 403 fields (application/json): - `code` (string) Example: "unauthorized_action" - `detail` (string) Example: "Unauthorized action is not allowed." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `title` (string) Example: "Unauthorized Action"