Skip to content

Update A Batch Of Key Parties

Request

Updates a batch of key parties

Security
bearerToken
Path
profileIdstring, (uuid)required

id of the profile

Bodyapplication/json
itemsArray of objects
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"
        }
      }
    ]
  }'

Responses

Success

Bodyapplication/json
failedArray of objects(PutKYCKeypartiesByProfileIdFailedResponse)
successfulArray of objects(PostKYCKeypartiesByProfileIdResponse)
Response
{ "failed": [ {} ], "successful": [ {} ] }