Rejecting a Loan Application
Description
This web service rejects a marketplace loan application. The loan application ID is received in the web service call.
Definition
https://<domain>/services/apexrest/peer/v1/loanApplications/reject/*
Parameters
The table given below provides details of the request parameters used by this web service:
Field |
Type |
Description |
---|---|---|
applicationId* |
String |
|
Error messages
When you post a web service, you can receive the possible error messages as shown in the table below:
Error Code |
Error Message |
System.Label |
Reason |
HTTP Status Code |
---|---|---|---|---|
INVALID_INPUT |
Loan Application is null. |
LOAN_APPLICATION_ID_NuLL |
If error occurs while parsing request parameters. |
400 |
INVALID_INPUT |
Unknown Exception : <exception_message> |
UNKNOWN_EXCEPTION |
Unknown exception while parsing request parameters. |
400 |
API_EXCEPTION |
<exception_message> |
NA |
If any validation fails or any unexpected error occurs during the processing of the request, system will raise the exception. |
500 |
Sample Request
The sample request to be sent is as shown below:
https://na11.salesforce.com/services/apexrest/peer/v1/loanApplications/reject/a2qG00000009VVW
Sample Response
The sample response contains the newly created loan application for the given borrower. The sample response is as shown below:
{
"status": "SUCCESS",
"response": [],
"errorMessage": null,
"errorCode": "NO_ERROR",
"content": [
null
]
}