Skip to content

GET /v1/phone-verification/status/:user_id

Read current phone verification status used by send gating.

Bearer API key (Authorization: Bearer <key>).

Path parameter:

  • user_id (string)

No request body.

200 OK

{
"user_id": "string",
"status": "unverified|pending|verified",
"verified_at": "ISO-8601|null",
"phone_last4": "string|null",
"updated_at": "ISO-8601"
}
  • 401 unauthorized: invalid/inactive API key.
  • 404 not_found: user does not exist for your tenant.
Terminal window
curl -H "Authorization: Bearer $ETN_API_KEY" \
"$GATEWAY_BASE_URL/v1/phone-verification/status/user_123"
  • Full phone number is never returned.
  • Tenant isolation is enforced by API key ownership.