Skip to content

Delete A Batch Of Key Party Searches

Request

Delete a batch of key parties searches

Security
bearerToken
Path
profileIdstring, (uuid)required

id of the profile

Bodyapplication/json
itemsArray of objects

Array of objects containing key party and search IDs.

curl -i -X DELETE \
  'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties/searches' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      {
        "keyPartyId": "fdc696df-3708-44b9-964f-6f4cff7001e9",
        "searchId": "9b1a67f9-9477-48e5-8a6c-11b70245e1d9"
      }
    ]
  }'

Responses

Success

Bodyapplication/json
failedArray of objects or null
successfulArray of objects or null
errorobject(DeleteKeyPartiesResponseByProfileIdFailedObjectResponseError)
Response
{ "failed": [ {} ], "successful": [ {} ], "error": { "type": "string", "title": "string", "status": 0, "detail": "string", "instance": "string" } }