Static utility method that extracts the username portion from the call.to
field of a parsed request body. Handles three input formats:
sip:username@domain (or sips:...) — strips the scheme and @domain
suffix, returning the usernametel:+1234567890 — strips the tel: scheme, returning the phone numberCommonly paired with
registerRoutingCallback() to route SIP traffic
based on the dialed user.
The parsed JSON body from an incoming request. Expected to contain a
call.to field with a SIP URI, TEL URI, or phone number string.
string | null — The extracted username or phone number, or null if the
call.to field is missing or cannot be parsed.