Skip to content

Create A Key Party Folder Linked To The Profile Id

Request

Uses the details provided by the user to create key parties. Returns the created key parties information.

Security
bearerToken
Path
profileIdstring, (uuid)required

id of the profile

Bodyapplication/json
itemsArray of objects
curl -i -X POST \
  '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",
        "entityType": "string",
        "keyPartyType": "string",
        "gender": "male",
        "dateOfBirth": "string",
        "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"
        }
      }
    ]
  }'

Responses

Success

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