Skip to main content
GET
/
api
/
phone-numbers
List Phone Numbers
curl --request GET \
  --url https://api.example.com/api/phone-numbers

Request

curl "https://app.orova.ai/api/phone-numbers?workspaceId=WORKSPACE_ID" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "data": [
    {
      "_id": "phone_id",
      "number": "+1234567890",
      "status": "active",
      "assignmentType": "inbound",
      "assignedAgentId": "agent_id",
      "workspaceId": "WORKSPACE_ID"
    }
  ]
}