Scorecard Update

post

This endpoint will update scorecard rules for an existing scorecard. Upon a succesful update for a scorecard, will return back the updated scorecard.

Authorizations
AuthorizationstringRequired
Header parameters
LenderIdstringRequired

Lender ID provided by Verdata

Body
merchant_idstring · uuidRequired
Responses
200

Seller Scorecard Result

application/json
post
/scorecard/update
POST /external/api/v1/scorecard/update HTTP/1.1
Host: api.myverdata.com
Authorization: YOUR_API_KEY
LenderId: text
Content-Type: application/json
Accept: */*
Content-Length: 176

{
  "merchant_id": "123e4567-e89b-12d3-a456-426614174000",
  "scorecard": [
    {
      "rule_id": "123e4567-e89b-12d3-a456-426614174000",
      "result": "text",
      "rule_description": "text",
      "notes": "text"
    }
  ]
}
200

Seller Scorecard Result

{
  "merchant_id": "123e4567-e89b-12d3-a456-426614174000",
  "scorecard_score": {
    "score": "-9999",
    "total": "-9999"
  },
  "scorecard": [
    {
      "rule_id": "123e4567-e89b-12d3-a456-426614174000",
      "rule_description": "text",
      "result": "text",
      "fail_score": 1,
      "pass_score": 1,
      "value": "text",
      "notes": "text",
      "updated_at": "2025-12-06T04:16:05.373Z",
      "target": "text"
    }
  ]
}

Last updated