Skip to content

Delete Profiles From Monitoring

Request

Removes list of profiles from kyc monitoring

Security
bearerToken
Bodyapplication/json
itemsArray of strings or null, (uuid)

The Request Items collection

curl -i -X DELETE \
  https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/kycMonitoring/profiles \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    ]
  }'

Responses

Success

Bodyapplication/json
failedArray of objects or null
successfulArray of strings or null, (uuid)
Response
{ "failed": [ {} ], "successful": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }