Connect API Catalog///
- API Documentation
Creditsafe Connect
- Update The Key Party By Profile Id and Key Party Id
Create A Key Party Folder Linked To The Profile Id
Return All Key Party Records Linked To A Profile
Update A Batch Of Key Parties
Delete a batch of key parties
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 The Key Party By P...
Updates a key party on a profile by Id. Returns the updated key party data.
Security
bearerToken
Modified key party
First name of the key party
Valid for only entity type Individual
Maximum length is 200 characters combining First name, Middle name and Last name
Middle name of the key party
Valid for only entity type Individual
Maximum length is 200 characters combining First name, Middle name and Last name
Last name of the key party
Valid for only entity type Individual
Maximum length is 200 characters combining First name, Middle name and Last name
Date of birth of the key party Date YYYY-MM-DD or YYYY format. Must be after 1900 and not in the future
Valid for the entity type Individual
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties/{keyPartyId}
- Production serverhttps://connect.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties/{keyPartyId}
curl -i -X PUT \
'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/profiles/{profileId}/keyparties/{keyPartyId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"firstName": "string",
"middleName": "string",
"lastName": "string",
"gender": "string",
"dateOfBirth": "2019-08-24",
"organisationNumber": "string",
"activityCode": "string",
"percentageOfShares": 0,
"role": "string",
"countryCode": "string",
"address": {
"buildingDetails": "string",
"street": "string",
"city": "string",
"region": "string",
"postalCode": "string",
"countryCode": "string",
"type": "string",
"description": "string"
}
}'Success
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "firstName": "string", "middleName": "string", "lastName": "string", "entityType": "string", "keyPartyType": "string", "gender": "string", "dateOfBirth": "2019-08-24", "organisationNumber": "string", "activityCode": "string", "percentageOfShares": 0, "role": "string", "countryCode": "string", "address": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "buildingDetails": "string", "street": "string", "city": "string", "region": "string", "postalCode": "string", "countryCode": "string", "type": "string", "description": "string", "createdAt": "2019-08-24T14:15:22Z", "createdById": 0, "createdBy": "string", "modifiedAt": "2019-08-24T14:15:22Z", "modifiedById": 0, "modifiedBy": "string" }, "searchId": "9b1a67f9-9477-48e5-8a6c-11b70245e1d9", "createdAt": "2019-08-24T14:15:22Z", "createdById": 0, "createdBy": "string", "modifiedAt": "2019-08-24T14:15:22Z", "modifiedById": 0, "modifiedBy": "string" }