Add applicant as beneficiary

Adds an existing individual applicant as a beneficiary.

Overview

Use this method to add an existing individual applicant as a beneficiary to the company.

📘

Note

If you need information on creating an individual applicant, refer to this method.

Example request

curl -X POST \
  'https://api.sumsub.com/resources/applicants/5e9412223cc1813b4db0b0e3/info/companyInfo/beneficiaries' \
  -H 'Content-Type: application/json' \
  -d '{
          "applicant": {
              "id": "5f6490a55584b510013e87df"
          },
          "applicantId": "5f6490a55584b510013e87df",
          "positions": ["director","ubo"],
          "type": "ubo"
      }'

Example response

{
  "companyName": "your_company_name",
  "registrationNumber": "7836733",
  "country": "GBR",
  "noUBOs": false,
  "beneficiaries": [
    {
      "applicantId": "5e70ac420a975a6f57d26042",
      "positions": [
        "director",
        "shareholder"
      ],
      "type": "ubo"
    }
  ]
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!