curl -X PATCH https://api.thinnest.ai/v2/phone-numbers/{phone_id} \
-H "Authorization: Bearer $THINNESTAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent_id": "ag_new_agent_id"
}'
PATCH /v2/phone-numbers/{phone_number_id}
Request Body
{
"agent_id": "ag_new_agent_id"
}
Response
{
"id": "pn_abc123",
"number": "+919876543210",
"provider": "vobiz",
"status": "active",
"agent_id": "ag_new_agent_id",
"monthly_cost_inr": 150.00,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T12:00:00Z"
}

