Skip to content

Link Searches To Key Parties

Request

Add searches link to key parties for the current logged in user.

Security
bearerToken
Path
profileIdstring, (uuid)required

id of the profile

Bodyapplication/json
itemsArray of objects
curl -i -X POST \
  'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties/searches/link' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      {
        "keyPartyId": "string",
        "searchId": "string"
      }
    ]
  }'

Responses

Created

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