/api/v0/customer/review

POST

Submit a manual review

To submit a manual review for a case, you must have run the case at least once. You will need the created customer ID.

You can submit a manual review by sending a POST request to the following endpoint:

https://platform.arva-ai.com/api/v0/customer/update

In the request body, you must provide the customer ID, verdict, reason, and if the verdict is REQUEST_INFORMATION, the RFI message.

curl -X POST https://platform.arva-ai.com/api/v0/customer/update \
-H "Content-Type: application/json" \
-d '{
  "customerId": "<CUSTOMER_ID>",
  "verdict": "<VERDICT>",
  "reason": "<REASON>",
  "rfi": "<RFI>" # if verdict is "REQUEST INFORMATION"
}'

If the request is successful you will receive a 200 OK response.