Skip to main content
POST
/
ramp
/
customer
/
{customer_id}
/
kyc
/
documents
Upload KYC docs
curl --request POST \
  --url https://api.etherfuse.com/ramp/customer/{customer_id}/kyc/documents \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "documentType": "document",
  "images": [
    {
      "image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQ...",
      "label": "front"
    },
    {
      "image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQ...",
      "label": "back"
    }
  ],
  "pubkey": "GDUKMGUGD3V6VXTU2RLAUM7A2FABLMHCPWTMDHKP7HHJ6FCZKEY4PVWL"
}
'
{
  "message": "Documents uploaded for review",
  "status": "proposed"
}

Authorizations

Authorization
string
header
required

API key sent in the Authorization header.

Path Parameters

customer_id
string<uuid>
required

The customer (child org) ID. Must belong to the caller's organization or a direct child.

Body

application/json

Request body for uploading KYC documents

documentType
string
required

Document type: "document" (ID) or "selfie"

images
object[]
required

Array of images to upload

identityUpdate
object

Optional identity data to associate with the document

pubkey
string | null

The public key of the wallet to submit KYC for (optional — omit to attach to org only)

Response

KYC documents uploaded