Skip to main content
PUT
/
api
/
external
/
customer
/
{customer}
/
document
/
{document}
Update a KYB document
curl --request PUT \
  --url https://api-prod.blaaiz.com/api/external/customer/{customer}/document/{document} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "message": "Cannot modify a document that has been approved or is currently under review."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

customer
string<uuid>
required
document
string<uuid>
required

Body

application/json
type
enum<string>
Available options:
CERTIFICATE_OF_INCORPORATION,
ARTICLES_OF_INCORPORATION,
BENEFICIAL_OWNERSHIP_CERTIFICATE,
INCORPORATION_DOCUMENTS,
CAC_STATUS_REPORT,
ACCOUNT_AGREEMENT,
PROOF_OF_ADDRESS,
BANK_STATEMENT,
LICENSE,
SHARE_REGISTRATION,
COMPANY_OWNERSHIP_STRUCTURE,
DIRECTORS_REGISTER,
OTHER
name
string
Maximum string length: 255
description
string | null
Maximum string length: 2000
file_id
string<uuid>

Provide to replace the underlying file. Must come from a fresh presigned URL call.

Response

Document updated.