# Verify delete user's phone number Verify the deletion of a user's phone number using a one-time code (OTC). This is the final step in the phone number deletion process. After initiating deletion, the system sends a verification code to the user's phone. This endpoint confirms the deletion by validating the OTC and code. Path parameters: - id: The unique identifier of the phone number to delete. Request body must include: - otcToken: The token issued during the deletion request. - code: The one-time code sent to the user via SMS. Use this endpoint to securely complete the deletion of a user's phone number. Endpoint: POST /resources/users/phone-numbers/v1/{id}/delete/verify Security: bearer ## Path parameters: - `id` (string, required) ## Request fields (application/json): - `otcToken` (string, required) OTC token - `code` (string, required) Code that was sent to the user ## Response 200 fields