Skip to content

Update Business AML Searches

Request

Updates a batch of business AML searches.

Security
bearerToken
Bodyapplication/json
itemsArray of objects
curl -i -X PUT \
  https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/searches/businesses \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      {
        "assignedToUserId": 0,
        "status": "string",
        "riskRating": "string",
        "note": "string",
        "searchId": "9b1a67f9-9477-48e5-8a6c-11b70245e1d9"
      }
    ]
  }'

Responses

Success

Bodyapplication/json
failedArray of objects
successfulArray of objects
Response
{ "failed": [ {} ], "successful": [ {} ] }