New: Streamlined onboarding defaults  View changelog
Enhanced Due Diligence

Send Verification Code

Send an OTP code to a customer's contact information.

POST
/v2/customer/{id}/otp-send
AuthorizationBearer <token>

In: header

Path Parameters

idstring

Customer ID

typestring

Type of verification code to send

Value in"phone" | "email"

Response Body

curl -X POST "https://api.spherepay.co/v2/customer/customer_f31121c389624d3697cbf3ea8830b7a4/otp-send" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "email"
  }'
{
  "customerId": "customer_f31121c389624d3697cbf3ea8830b7a4",
  "expiresAt": "2026-03-09T20:46:31.305Z"
}

{
  "status": 400,
  "detail": "Invalid request parameters",
  "code": "address/invalid",
  "correlationId": "28c61e885c6e5eaa78c1a2183a9b883c"
}

{
  "status": 404,
  "detail": "Resource not found",
  "code": "resource/not-found",
  "correlationId": "28c61e885c6e5eaa78c1a2183a9b883c"
}

{
  "status": 422,
  "detail": "Validation failed",
  "code": "validation/failed",
  "correlationId": "28c61e885c6e5eaa78c1a2183a9b883c",
  "errors": [
    {
      "detail": "Invalid email format",
      "pointer": "/email"
    },
    {
      "detail": "Name is required",
      "pointer": "/name"
    }
  ]
}