Skip to main content
GET
/
documents
/
accounts
/
{account_id}
/
upload
List documents for an account
curl --request GET \
  --url https://service.bluumfinance.com/v1/documents/accounts/{account_id}/upload \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "document_id": "doc_a1b2c3d4e5f6g7h8",
    "account_id": "3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b",
    "document_type": "id_verification",
    "upload_status": "approved",
    "uploaded_at": "2025-01-10T09:00:00Z"
  },
  {
    "document_id": "doc_b2c3d4e5f6g7h8i9",
    "account_id": "3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b",
    "document_type": "proof_of_address",
    "upload_status": "processing",
    "uploaded_at": "2025-01-15T10:30:00Z"
  },
  {
    "document_id": "doc_c3d4e5f6g7h8i9j0",
    "account_id": "3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b",
    "document_type": "w9_form",
    "upload_status": "approved",
    "uploaded_at": "2025-01-12T14:20: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"

Query Parameters

document_type
enum<string>

Filter documents by type.

Available options:
id_verification,
proof_of_address,
w9_form
status
enum<string>

Filter documents by status.

Available options:
processing,
approved,
rejected

Response

List of documents for the account

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