Skip to content

Add Profiles To Monitoring

Request

Adds a list of profile/s to monitoring.

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

Provide the list of profile Id's in the array.

curl -i -X POST \
  https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/kycMonitoring/profiles/bulk \
  -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
Response
{ "failed": [ {} ], "successful": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }