Skip to main content
POST
/
ramp
/
customer
/
{customer_id}
/
kyc
Submit KYC
curl --request POST \
  --url https://api.sand.etherfuse.com/ramp/customer/{customer_id}/kyc \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identity": {
    "email": "[email protected]",
    "phoneNumber": "+525512345678",
    "occupation": "Software Engineer",
    "dateOfBirth": "1990-05-15",
    "name": {
      "givenName": "Ana",
      "familyName": "García",
      "motherMaidenName": "López"
    },
    "address": {
      "street": "Av. Reforma 222",
      "city": "Ciudad de México",
      "region": "CDMX",
      "postalCode": "06600",
      "country": "MX"
    },
    "idNumbers": [
      {
        "type": "CURP",
        "value": "GALA900515MDFRPN08"
      },
      {
        "type": "RFC",
        "value": "GALA900515QX4"
      }
    ]
  }
}
'
{
  "message": "KYC data submitted 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 submitting KYC identity data. This endpoint is for personal accounts only; business/KYB fields are not accepted.

identity
object
required

Personal identity information for the customer.

Response

KYC identity data submitted