Create and configure your approval center

POST to https://sandbox.verifast.com/api/v1/getapplicationapproval

Sample Request

curl --location --request POST 'https://sandbox.verifast.com/api/v1/setapprovalcenter' \
--header 'Authorization: Bearer Of5Ebpi4n7a6uPbpn2nYhs1y0sQDie9hV5lnXWYADtHVZredm6bHlXhmcSBZ' \
--data-raw  '{
   "net_monthly_rent":{
      "attribute_value":"1",
      "weight":"10",
      "score_value":"3",
      "baseline_type":"down",
      "baseline_value":"3",
      "evaluation_type":"down",
      "evaluation_value":"1",
      "attribute_description":"Net monthly income to rent. This uses the rentbudget supplied and compares to total income to produce a percentage"
   },
   "debt_to_income":{
      "attribute_value":"1",
      "weight":"10",
      "score_value":"3",
      "baseline_type":"down",
      "baseline_value":"3",
      "evaluation_type":"down",
      "evaluation_value":"1",
      "attribute_description":"Net monthly income to rent. This uses the rentbudget supplied and compares to total income to produce a percentage"
   },
   ...
}'

Sample Response

{
    "success": true,
    "message": ""
}