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

Request call forwarding

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

Path parameters

numberRequiredstring

Sender phone number in E.164 format, e.g. +15551234567.

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

US E.164 number to forward calls to.

Returns

dataoptionalobject

Response codes

200Call forwarding requested
401Your API key is missing or invalid. Pass it as a bearer token.
422Validation failed — one or more fields in the request are invalid or missing.

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/v4/me/numbers/%2B15551234567/call-forwarding \  -H "Authorization: Bearer bl_live_..." \  -H "Content-Type: application/json" \  -d '{    "forward_to": "string"  }'
Body object
Response objectexample
{  "data": {}}