Endpoints to authenticate and generate an authentication token for secure access to the API.
KYC (Know Your Customer) (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/
Risk rating of the profile.
Status of the profile.
Creditsafe Id of the user to assign the profile to.
Passing null will unassign the profile.
The date to which the profile should be reviewed.
Format YYYY-MM-DD
Validates when the date changes and is either current or in the future.
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/9a7ae0c8-f473-4ab6-8dbb-03fc061630cc \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"riskRating": "notApplicable",
"status": "new",
"internalId": "string",
"assignedToId": {},
"kycReviewOn": "2021-04-20",
"kycComments": "string"
}'The risk rating being assigned to the profile
Status of the profile (new, approved, declined, pending, cancelled, referred, closed, approvedReviewDue)
Type of the profile (trust, individual, soleTrader, company, plc, partnership, otherEntity)
Status of profile creation (submitted, preprocessed, validated, queued, inProgress, processed, completed, partiallyCompleted, failed)
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "riskRating": "notApplicable", "status": "string", "type": "string", "internalId": "string", "assignedToId": 0, "assignedTo": "string", "safeNumber": "string", "companyId": "string", "formationDate": "2019-08-24", "createdAt": "2019-08-24T14:15:22Z", "createdById": 0, "createdBy": "string", "modifiedAt": "2019-08-24T14:15:22Z", "modifiedById": 0, "modifiedBy": "string", "kycApprovedAt": "2019-08-24T14:15:22Z", "kycReviewOn": "2019-08-24", "kycStatusUpdatedOn": "2019-08-24T14:15:22Z", "kycComments": "string", "noteCount": 0, "attachmentCount": 0, "keyPartyCount": 0, "uboCount": 0, "openAlertCount": 0, "modeOfCreation": "string", "importStatus": "string", "isLocked": true }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/notes
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/notes
- 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/profiles/9a7ae0c8-f473-4ab6-8dbb-03fc061630cc/notes \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"body": "The body of the note to be added. Limited to 1000 characters"
}'{ "id": "c3966c5f-576e-4770-902b-eaab894b83d7", "body": "testing", "isArchived": false, "createdAt": "2023-08-08T07:32:06.4989594Z", "createdById": 101562008, "createdBy": "Amol", "modifiedAt": "2023-08-08T07:32:06.4989594Z", "modifiedById": 101562008, "modifiedBy": "Amol", "correlationId": "f447fa87-d538-4ccb-9bac-43084d840a12" }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/notes
- Production server
https://connect.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/notes
- 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/profiles/9a7ae0c8-f473-4ab6-8dbb-03fc061630cc/notes?page=1&pageSize=0&searchTerm=string&isArchived=false' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "items": [ { … } ], "totalSize": 0, "correlationId": "string" }