Skip to content
Get Started

Clear call forwarding for a line

DELETE/api/lines/{sendblue_number}/call-forwarding

Removes the per-line call forwarding number. After clearing, inbound calls will fall back to the company default forwarding number (if configured).

This operation is idempotent — calling it on a line with no forwarding set returns 200 with forwarding_number: null.

Path ParametersExpand Collapse
sendblue_number: string
ReturnsExpand Collapse
forwarding_number: string

The number calls are forwarded to, or null if not set

sendblue_number: string

The Sendblue phone number (E.164)

Clear call forwarding for a line

curl https://api.sendblue.co/api/lines/$SENDBLUE_NUMBER/call-forwarding \
    -X DELETE \
    -H "sb-api-key-id: $SENDBLUE_API_API_KEY" \
    -H "sb-api-secret-key: $SENDBLUE_API_API_SECRET"
{
  "forwarding_number": "+16692138010",
  "sendblue_number": "+12125550101"
}
Returns Examples
{
  "forwarding_number": "+16692138010",
  "sendblue_number": "+12125550101"
}