# Retrieve consumer loan application Returns the current status and details of an existing consumer loan application. Additionally, you can subscribe to the webhook event to receive status updates on the application. Endpoint: GET /v1/persons/{person_id}/consumer_loan_applications/{application_id} Version: 1.0 ## Path parameters: - `person_id` (string, required) The of the customer applying for the loan. - `application_id` (string, required) The unique ID of the customer's loan application. ## Response 200 fields (application/json): - `id` (string, required) The unique ID of a customer's consumer loan application. Example: "108787ede6b743dcbe0c3398bc4a6ce8clap" - `status` (string, required) The status of a consumer loan application. Enum: "offered", "account_snapshot_verification", "approved", "esign_pending", "screening_pending", "esign_failed", "loan_creation_pending", "loan_created", "rejected", "deleted", "expired" - `status_description` (string,null) Additional details about the consumer loan application status. - `skip_account_snapshot` (boolean) - `signing_id` (string,null) The ID of the signing resource, created after the customer's identification and e-signing process has been triggered. Example: "7c63600ddddec4f2668893af39c1b814csig" - `seller` (string,null) The name of the seller of the financed good. - `payout_description` (string,null) Additional details around the loan payout. - `loan_id` (string,null) The unique ID of a loan. - `financed_good` (string,null) The financed good that was purchased using the loan. - `delayed_payout_strategy` (string) Field to indicate the payout strategy to be applied to the loan. If set to , then the loan payout will happen automatically. Enum: "none", "after_revocation" - `cash_price` (object,null) The cash price of the financed good (i.e., net price without financing fees, interest). Example: {"value":1000,"unit":"cents","currency":"EUR"} - `cash_price.value` (integer, required) The amount value Example: 1000 - `cash_price.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `cash_price.unit` (string, required) The unit of the given value. Enum: "cents" - `approximate_total_loan_expenses` (object,null) An approximate amount of the loan total expenses (e.g., costs and expenses the lender incurred during a loan lifecycle) Example: {"value":1000,"unit":"cents","currency":"EUR"} ## Response 404 fields (application/json): - `title` (string) Example: "Model Not Found" - `status` (string) Example: "404" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Couldn't find 'Account' for id 'DE24112233445566'." - `code` (string) Example: "model_not_found"