Endpoints to authenticate and generate an authentication token for secure access to the API.
KYC Compliance (1.0.0)
KYC (Know Your Customer) enables you to make better-informed risk management decisions by utilizing our comprehensive business information. This service is designed for both Know Your Business operations and AML (Anti-Money Laundering) screening features.
The application ensures that you can conduct due diligence on customers and suppliers alike, identify key parties, verify individual identity details globally, and screen against international sanctions, regulatory enforcements, PEP (Politically Exposed Persons) lists, and potential adverse media.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
Request
Adds the specified searches to AML monitoring, i.e. schedules them for screening. If thresholds and datasets are amended from the original search, new results will generated. Any existing hits will be overridden and any previous match decisions will be reset.
Important A pre-requisite for monitoring work is that any searches MUST be linked to a profile before Monitoring can be Active.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/schedules
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/schedules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/schedules \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"items": [
{
"threshold": 0,
"datasets": [
"string"
],
"isEmailRequired": true,
"emailRecipients": [
"string"
],
"searchId": "9b1a67f9-9477-48e5-8a6c-11b70245e1d9",
"isDobRequired": false
}
]
}'
{ "failed": [ { … } ], "successful": [ { … } ] }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/schedules
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/schedules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/schedules?page=1&pageSize=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "items": [ { … } ], "totalSize": 0 }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/schedules
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/schedules
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/schedules \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"items": [
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}'
{ "failed": [ { … } ], "successful": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ] }