Skip to content

Delete a batch of key parties

Request

Delete a selection of key parties from a specific profile.

Security
bearerToken
Path
profileIdstring, (uuid)required

Id of the profile

Bodyapplication/json
keyPartyIdsArray of strings, (uuid)
curl -i -X DELETE \
  'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "keyPartyIds": [
      "497f6eca-6276-4993-bfeb-53cbbbba6f08"
    ]
  }'

Responses

Success

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