BetaThe V4 API is in beta — endpoints and functionality may change.
Numbersv2

Request call forwarding

POST/me/numbers/{number}/call-forwarding

Open 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

numberRequiredstring

Source E.164 phone number to forward (URL-encoded, e.g., %2B15551234567). Must be a dedicated or inbound number owned by your organization.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Body parameters

JSON
forward_toRequiredstring

Destination US phone number that calls should be forwarded to. E.164 format recommended (e.g., +15559876543).

Returns

successoptionalboolean
ticket_idoptionalstring

Identifier of the support ticket tracking this request

statusoptionalstring

Ticket status

numberoptionalstring

Source number (E.164)

forward_tooptionalstring

Destination number (E.164)

Response codes

201Call forwarding request created
400Invalid request parameters
401Authentication required or invalid
403Ticket creation is disabled for your organization

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
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"  }'
Body object
Response objectexample
{  "success": true,  "ticket_id": "tkt_abc123",  "status": "open",  "number": "+15551234567",  "forward_to": "+15559876543"}