Blooio API Reference
Numbers

Request 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.

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

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Path Parameters

number*string

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

forward_to*string

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

Response Body

application/json

application/json

application/json

curl -X POST "https://backend.blooio.com/v2/api/me/numbers/string/call-forwarding" \  -H "Content-Type: application/json" \  -d '{    "forward_to": "+15559876543"  }'
{
  "success": true,
  "ticket_id": "tkt_abc123",
  "status": "open",
  "number": "+15551234567",
  "forward_to": "+15559876543"
}
{
  "error": "string",
  "message": "string",
  "status": 0,
  "code": "string"
}
{
  "error": "string",
  "message": "string",
  "status": 0,
  "code": "string"
}
Empty