API Endpoints
Update Loan Offer
Allows customers to accept or withdraw from a loan offer that has been sent to them.
PUT
Customers can use this endpoint to respond to a loan offer. If the offer is accepted, the application status changes to
ACCEPTED. If withdrawn, the status changes to WITHDRAWN.
This endpoint can only be used when the loan application status is
OFFER_SENT. Attempting to use it with any other status will result in an error.Request Headers
The JWT Access Token obtained from the
/login or /refresh-token endpoint.Unique idempotency key for the request to prevent duplicate processing.
The date and time at which the request was initiated (ISO 8601 format).
The IP address of the customer making the request.
Unique identifier for the interaction/session.
Path Parameters
The unique identifier (UUID) of the loan application to update.
Query Parameters
true: Accept the loan offer (status changes toACCEPTED)false: Withdraw from the loan offer (status changes toWITHDRAWN)
Response
Returns the updated loan application details.Overall status of the API request.
Updated loan application details.
