Change company data

Changes the company data.

Overview

Use this method to change the company data. This method patches the fields in the companyInfo body of the applicant profile.

📘

Note

When making a request, the body parameters must contain all of the fields that have values. Null fields at the companyInfo will be unset. You can get the previously filled data with this method.

Example request

curl -X PATCH \
  'https://api.sumsub.com/resources/applicants/5b76df770a975a1404cbcb60/info/companyInfo' \
  -H 'Content-Type: application/json' \
  -d '{
          "companyName": "your_company_name",
          "registrationNumber": "7836733",
          "country": "GBR",
          "website": "yourcompany.com",
          "noUBOs": false,
          "beneficiaries": [
           {
              "applicantId": "5e95717e0a975a723e187cde",
              "positions": null,
              "type": "ubo",
              "inRegistry": false,
              "imageIds": null,
              "applicant": null
           },
           {
              "applicantId": "5e9571a30a975a723e187ce9",
              "positions": ["shareholder"],
              "type": "shareholder",
              "inRegistry": false,
              "imageIds": null,
              "applicant": null
           }
          ]
      }'

Example response

📘

Note

A patched information entity could be quite damaging if misused. It is recommended to check in the sandbox environment if the response returns expected results.

{
  "companyName": "your_company_name",
  "registrationNumber": "7836733",
  "country": "GBR",
  "website": "yourcompany.com",
  "noUBOs": false,
  "beneficiaries": [
    {
      "applicantId": "5e95717e0a975a723e187cde",
      "positions": null,
      "type": "ubo",
      "inRegistry": false,
      "imageIds": null,
      "applicant": null
    },
    {
      "applicantId": "5e9571a30a975a723e187ce9",
      "positions": [
        "shareholder"
      ],
      "type": "shareholder",
      "inRegistry": false,
      "imageIds": null,
      "applicant": null
    }
  ]
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!