Skip to main content
POST
https://api.business.bumxpress.com
/
customers
/
{customer_id}
/
kyc
Submit KYC documents
curl --request POST \
  --url https://api.business.bumxpress.com/customers/{customer_id}/kyc \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Api-Secret: <api-key>' \
  --data '
{
  "documents": [
    {
      "document_type": "national_id",
      "document_number": "ID123456",
      "issue_country_code": "CM",
      "issue_date": "2020-01-15",
      "expiry_date": "2030-01-15",
      "front_file_url": "https://cdn.example.com/kyc/front.jpg",
      "back_file_url": "https://cdn.example.com/kyc/back.jpg",
      "selfie_file_url": "https://cdn.example.com/kyc/selfie.jpg"
    }
  ]
}
'
{
  "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "documents": [
    {
      "document_type": "national_id",
      "document_number": "<string>",
      "issue_country_code": "CM",
      "issue_date": "2023-12-25",
      "expiry_date": "2023-12-25",
      "front_file_url": "<string>",
      "back_file_url": "<string>",
      "selfie_file_url": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "uploaded",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}
{
"error": {
"code": "bad_request",
"message": "quote_id is required"
}
}
{
"error": {
"code": "bad_request",
"message": "quote_id is required"
}
}
{
"error": {
"code": "bad_request",
"message": "quote_id is required"
}
}
Document files must be available at public HTTP or HTTPS URLs so Bumxpress can fetch them.

Authorizations

X-Api-Key
string
header
required

Public API key from the merchant dashboard.

X-Api-Secret
string
header
required

Secret shown once when the API key is created.

Path Parameters

customer_id
string<uuid>
required

Body

application/json
documents
object[]
required
Minimum array length: 1

Response

KYC documents accepted.

customer_id
string<uuid>
required
kyc_status
enum<string>
required
Available options:
not_started,
pending,
approved,
rejected
documents
object[]
required
Last modified on July 8, 2026