Skip to main content
POST
/
api
/
external
/
customer
/
{customer}
/
owner
/
{owner}
/
files
Register owner ID files
curl --request POST \
  --url https://api-prod.blaaiz.com/api/external/customer/{customer}/owner/{owner}/files \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id_document_front": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id_document_back": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "message": "Owner files uploaded successfully",
  "data": {
    "id": "019a6e22-8b4c-7c8d-9d12-c0c1ab3f1a90",
    "first_name": "Jane",
    "last_name": "Doe",
    "id_document_path": "business-data/api-services/customer/.../owner/.../id_document_front_...",
    "id_document_back_path": null,
    "status": "PENDING",
    "admin_comments": null
  }
}

Documentation Index

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

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

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
owner
string<uuid>
required

Body

application/json
id_document_front
string<uuid>

file_id returned by the presigned-URL call for the front slot.

id_document_back
string<uuid>

file_id for the back slot. Optional — depends on the ID document type.

Response

Files registered.