New API Endpoint: Get Resubmission

The API Users now have the possibility to get information about the declined fields in their Applications and the reason of the  decline via the new Underwriting API method: Get Resubmission.  

Sample

  • In the request URL, the User enters {id} of the existing underwriting application 
  • In the response, the User receives a json object containing the application declined fields with values and reasons for decline 
  • Request endpoint:  /api/underwriting-applications/{applicationId}/resubmission
{  
 "businessDetails": { 
    "legalName": {value:"123_Test", "reason": "wrong format. Please, update Legal Name" }, 
    "name": {value: "123_Test", "reason": "wrong format." }}, 
  "businessProfile": {"category": {value:"IT", "reason": "Wrong format. Please, use Information Technology"} }, 
  "ownerDetails": [ 
    { "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", 
      "Address": {value: { 
        "street": "123", 
        "apartment": "123 avenue", 
        "city": "LA", 
        "country": "USA", 
        "stateCode": "LA", 
        "zip": "123456789"}, 
      "reason": "Please, add app number" }, 
      {"Date Of Birth": {value: "string", "reason": "Please, define relevant Date Of Birth "} },}, 
    {"id": "3fa85f64-5717-4562-b3fc-2c963f66a123", 
      "Email": {value: "string", "reason": "Please, define relevant email"}} 
  ] 
}