Skip to main content
POST
/
api
/
v2
/
users
/
company
/
document
Add company user document
curl --request POST \
  --url https://sandbox.killb.app/api/v2/users/company/document \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form userId=3c90c3cc-0d44-4b50-8888-8dd25736052a \
  --form documentType=NIT \
  --form frontDocument='@example-file' \
  --form backDocument='@example-file'
{
  "errorCode": "API_USER.0001",
  "arguments": [
    {
      "key": "email",
      "value": "[email protected]"
    }
  ],
  "message": [
    "User not found",
    "Account not found"
  ],
  "statusCode": "400"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

multipart/form-data
userId
string<uuid>
required
documentType
enum<string>
required
Available options:
PROVE_OF_ADDRESS_BANK_STATEMENT,
PROVE_OF_ADDRESS_UTILITY_BILL,
PROVE_OF_ADDRESS_LEASE_AGREEMENT,
SOURCE_OF_FUNDS_BANK_STATEMENT,
SOURCE_OF_FUNDS_PAYSLIP,
PROOF_OF_COMPANY_FORMATION,
ARTICLES_OF_INCORPORATION,
INCORPORATION_DOCUMENTS,
KYB_REPORT,
NIT,
RUT,
OTHER,
USCC
Example:

"NIT"

frontDocument
file
required

Front document file

backDocument
file

Back document file

Response