Skip to main content
POST
/
documents
/
accounts
/
{account_id}
/
upload
Upload a document for an account
curl --request POST \
  --url https://service.bluumfinance.com/v1/documents/accounts/{account_id}/upload \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file' \
  --form document_type=id_verification
{
  "document_id": "doc_a1b2c3d4e5f6g7h8",
  "account_id": "3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b",
  "document_type": "id_verification",
  "upload_status": "processing",
  "uploaded_at": "2025-01-15T10:30:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.bluumfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

account_id
string<uuid>
required
Example:

"3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b"

Body

multipart/form-data
file
file
required

The binary content of the document file (e.g., PDF or JPG).

document_type
enum<string>
required

The type of document being uploaded.

Available options:
id_verification,
proof_of_address,
w9_form

Response

Document uploaded and processing has begun

document_id
string<uuid>
account_id
string<uuid>
upload_status
enum<string>
Available options:
processing,
approved,
rejected
uploaded_at
string<date-time>