---
title: "Send phone verification code"
method: POST
path: "/users/@me/phone/send-verification"
tags: ["Users"]
---

# Send phone verification code

`POST /users/@me/phone/send-verification`

Send a one-time code on the requested channel. Defaults to the first available channel from server policy. Pass channel="sms" to request SMS (only honoured for SMS-allowlisted destinations) or channel="inbound_challenge" to receive challenge details to text in. Expensive outbound destinations always downgrade to an inbound challenge.

## Request body

- PhoneSendVerificationRequest
  - `phone` string, required
  - `channel` 'sms' | 'inbound_challenge' — Channel to deliver the OTP on. Defaults to the first available channel from server policy. Server may override to an available fallback when the requested channel is disabled.

## Response `200`

Success

- union
  - object
    - `channel` 'sms', required — Channel actually used for delivery (may differ from request when server adjusts)
  - object
    - `channel` 'inbound_challenge', required — The user must send Fluxer an SMS instead of receiving one
    - `challenge_code` string, required — The numeric code the user must text to our number
    - `our_number` string, required — The Twilio number the user must text the code to (E.164)
    - `expires_at` string, date-time, required — ISO 8601 timestamp when this inbound challenge expires
    - `reason` 'voip' | 'canadian' | 'unknown_line_type' | 'expensive_destination' | 'account_forced' | 'behavioural_risk', required — Why inbound verification is required

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `401` — Unauthorized - Authentication is required or the token is invalid
- `403` — Forbidden - You do not have permission to perform this action
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.dev/fluxer/apis/fluxer-api.md) · [All operations](https://skmtc.dev/fluxer/apis/fluxer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluxer/fluxer-api/revisions/d9c706133cc5/schema)
