Skip to content

Add AML Searches To The Given Profile

Request

Adds a list of searches to a profile.

Security
bearerToken
Path
profileIdstring, (uuid)required

id of the profile

Bodyapplication/json
searchIdsArray of strings, (uuid)

List of searches to link to a profile

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

Responses

Success

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