Connect API Catalog///
- API Documentation
Creditsafe Connect
- Update A Batch Of Key Parties
Create A Key Party Folder Linked To The Profile Id
Return All Key Party Records Linked To A Profile
Delete a batch of key parties
Update The Key Party By Profile Id and Key Party Id
Delete A Key Party By Key Party Id
Return All Key Party Searches
Delete A Batch Of Key Party Searches
Request Multiple Searches Linked To A Key Party Asynchronously
Link Searches To Key Parties
Update A Batch Of Key Par...
Updates a batch of key parties
Security
bearerToken
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties
- Production serverhttps://connect.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties
curl -i -X PUT \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"items": [
{
"name": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string",
"gender": "string",
"dateOfBirth": "string",
"organisationNumber": "string",
"activityCode": "string",
"percentageOfShares": 0,
"role": "string",
"countryCode": "string",
"keyPartyId": "string",
"address": {
"buildingDetails": "string",
"street": "string",
"city": "string",
"region": "string",
"postalCode": "string",
"countryCode": "string",
"type": "string",
"description": "string"
}
}
]
}'Response
{ "failed": [ { … } ], "successful": [ { … } ] }