Request call forwarding
/me/numbers/{number}/call-forwardingOpen a request to forward calls from one of your numbers to another phone number.
This does not instantly reconfigure forwarding — it opens a support request that the Blooio team fulfils, and the change typically takes effect within one business day. The {number} path parameter is the source number to forward, and forward_to is the destination.
Only dedicated or inbound numbers owned by your organization can be forwarded; shared numbers cannot, because the underlying line is shared across organizations. Both numbers must be valid US numbers.
Path parameters
numberRequiredstringSource E.164 phone number to forward (URL-encoded, e.g., %2B15551234567). Must be a dedicated or inbound number owned by your organization.
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Body parameters
JSONforward_toRequiredstringDestination US phone number that calls should be forwarded to. E.164 format recommended (e.g., +15559876543).
Returns
successoptionalbooleanticket_idoptionalstringIdentifier of the support ticket tracking this request
statusoptionalstringTicket status
numberoptionalstringSource number (E.164)
forward_tooptionalstringDestination number (E.164)
Response codes
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X POST https://api.blooio.com/v2/api/me/numbers/%2B15551234567/call-forwarding \ -H "Authorization: Bearer bl_live_..." \ -H "Content-Type: application/json" \ -d '{ "forward_to": "+15559876543" }'{ "success": true, "ticket_id": "tkt_abc123", "status": "open", "number": "+15551234567", "forward_to": "+15559876543"}