Skip to content

pager

The numbering plan types the number as a pager

The Spaw phone risk signal pager adds 30 points to risk_score when libphonenumber's numbering-plan metadata types the number as a pager, such as parts of the UK 076 range (dataset libphonenumber).

risk weight
+30
dataset
libphonenumber
reads from
line_type
default SMS policy
does not block it on its own: +30 is within the default ceiling of 60, which blocks only a score above it.

What it means

A paging number reaches a paging service, not a phone a person can reply from, and few plans still set ranges aside for them; the UK's 076 is one. line_type answers pager with line_type_source numbering_plan, and the dataset is libphonenumber.

What it cannot tell you

  • It reads the plan's range: it cannot tell you whether a paging service still answers there.

What to do

Do not take it as a contact number for codes; blocked_line_types pager refuses the line type outright. On its own it scores 30 and passes the default SMS policy, which blocks a score above 60; beside other signals the score can pass that.

The SMS policy is set per account with PUT /api/v1/phone/policy or the dashboard’s SMS policy tab, and its block_signals may list any signal, this one included; the phone guide lists every rule and its default.

Example response

An excerpt of an answer carrying this signal alone, with the number and the other fields left out, because no test number answers it. The score and the decision are worked out as the lookup and the default SMS policy work them out.

{
    "valid": true,
    "country": "GB",
    "line_type": "pager",
    "line_type_source": "numbering_plan",
    "risk_score": 30,
    "risk_level": "medium",
    "risk_signals": [
        {
            "signal": "pager",
            "weight": 30,
            "dataset": "libphonenumber"
        }
    ],
    "ok_to_send": true,
    "blocked_by": null
}

A real answer carries every field, listed in the validate-phone reference; the weights of every entry in risk_signals sum to risk_score, capped at 100.

Related

markdown version: /docs/signals/phone/pager.md