Skip to main content
POST
/
accounts
/
{account_id}
/
kyc
/
documents
Upload document for account KYC
curl --request POST \
  --url https://service.bluumfinance.com/v1/accounts/{account_id}/kyc/documents \
  --header 'Content-Type: multipart/form-data' \
  --form document='@example-file' \
  --form 'document_type=<string>'
{
  "status": "success",
  "message": "Document uploaded"
}

Body

multipart/form-data
document
file
required

The document file (PDF, JPG, PNG, DOC, DOCX)

document_type
string

Type of document being uploaded (e.g. PASSPORT, UTILITY_BILL)

Response

Document uploaded successfully

status
string
Example:

"success"

message
string
Example:

"Document uploaded"