Caller ID Name (CNAM) Info:

Version 6.1 by Chris Workman on 2026/08/17 22:42

  :root{
    --navy:#003366;
    --blue:#307ab2;
    --sky:#38b2e3;
    --red:#cf333d;
    --slate:#2e404d;
    --grey:#8f9499;
    --lightgrey:#dedede;
    --offwhite:#f0f0f0;
    --max-w: 960px;
  }

  *{ box-sizing:border-box; }

  body{
    margin:0;
    font-family:'Host Grotesk','Poppins','Segoe UI',system-ui,sans-serif;
    color:var(--slate);
    background:#ffffff;
    font-weight:300;
    line-height:1.6;
  }

  a{ color:var(--blue); }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:var(--navy);
    overflow:hidden;
    padding:52px 32px 64px;
  }
  .hero-inner{
    max-width:var(--max-w);
    margin:0 auto;
    position:relative;
    z-index:2;
  }
  .hero .logo{
    height:34px;
    margin-bottom:36px;
    display:block;
  }
  .hero h1{
    color:#ffffff;
    font-weight:800;
    font-size:2.4rem;
    margin:0 0 10px;
    letter-spacing:-0.01em;
  }
  .hero p.kicker{
    color:var(--sky);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:.8rem;
    margin:0 0 8px;
  }
  .hero p.sub{
    color:#dbe9f4;
    font-weight:300;
    font-size:1.05rem;
    max-width:560px;
    margin:0;
  }
  .wave{
    position:absolute;
    top:0; right:0; bottom:0;
    width:70%;
    z-index:1;
    pointer-events:none;
  }

  /* ---------- TOC / QUICK NAV ---------- */
  .toc-wrap{
    background:var(--offwhite);
    border-bottom:1px solid var(--lightgrey);
  }
  .toc{
    max-width:var(--max-w);
    margin:0 auto;
    padding:16px 32px;
    display:flex;
    flex-wrap:wrap;
    gap:6px 28px;
  }
  .toc a{
    text-decoration:none;
    color:var(--navy);
    font-weight:600;
    font-size:.85rem;
    letter-spacing:.02em;
    padding:4px 0;
    border-bottom:2px solid transparent;
    transition:border-color .15s ease;
  }
  .toc a:hover{ border-color:var(--sky); }

  /* ---------- MAIN ---------- */
  main{
    max-width:var(--max-w);
    margin:0 auto;
    padding:48px 32px 16px;
  }

  section{
    margin-bottom:52px;
    padding-top:8px;
    scroll-margin-top:24px;
  }
  section:last-of-type{ margin-bottom:32px; }

  h2{
    color:var(--navy);
    font-weight:800;
    font-size:1.5rem;
    margin:0 0 6px;
    letter-spacing:-0.005em;
  }
  .rule{
    width:56px;
    height:4px;
    background:var(--red);
    border:none;
    margin:0 0 20px;
    border-radius:2px;
  }
  h3{
    color:var(--blue);
    font-weight:700;
    font-size:1.05rem;
    margin:0 0 10px;
  }
  p{
    margin:0 0 14px;
    font-weight:300;
    color:var(--slate);
  }
  .lede{
    color:var(--blue);
    font-weight:600;
    font-size:1.1rem;
  }

  ul.plain{
    margin:0 0 14px;
    padding-left:20px;
  }
  ul.plain li{
    margin-bottom:8px;
    font-weight:300;
  }

  /* checklist-style guideline box, echoing the brand guide's column callouts */
  .guideline-box{
    background:var(--offwhite);
    border-radius:12px;
    padding:28px 32px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(190px,1fr));
    gap:0;
  }
  .guideline-box .item{
    padding:0 24px;
    border-left:3px solid var(--red);
  }
  .guideline-box .item:first-child{
    border-left:none;
    padding-left:0;
  }
  .guideline-box .item p{
    margin:0;
    font-weight:500;
    color:var(--slate);
    font-size:.95rem;
  }

  /* prohibited-content callout */
  .warning-box{
    background:#ffffff;
    border:1px solid var(--lightgrey);
    border-left:4px solid var(--red);
    border-radius:8px;
    padding:24px 28px;
  }
  .warning-box p.lead{
    font-weight:300;
    margin-bottom:16px;
  }
  .warning-box ul.plain{
    margin-bottom:0;
  }
  .warning-box ul.plain li::marker{
    color:var(--red);
  }

  /* CTA / update box */
  .cta-box{
    background:var(--navy);
    border-radius:12px;
    padding:32px 36px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:20px;
  }
  .cta-box p{
    color:#e7f1f9;
    font-weight:300;
    margin:0;
    max-width:480px;
  }
  .cta-box a.btn{
    display:inline-block;
    background:transparent;
    border:2px solid var(--sky);
    color:#ffffff;
    text-decoration:none;
    font-weight:700;
    font-size:.9rem;
    padding:12px 26px;
    border-radius:6px;
    white-space:nowrap;
    transition:background .15s ease;
  }
  .cta-box a.btn:hover{ background:var(--sky); }

  footer{
    max-width:var(--max-w);
    margin:0 auto;
    padding:24px 32px 48px;
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--grey);
    font-size:.8rem;
  }
  footer img{ height:18px; opacity:.8; }

  @media (max-width:600px){
    .hero{ padding:36px 20px 48px; }
    .hero h1{ font-size:1.7rem; }
    main{ padding:36px 20px 8px; }
    .toc{ padding:14px 20px; }
    .guideline-box{ padding:24px; }
    .guideline-box .item{ border-left:none; padding:0 0 16px; border-bottom:1px solid var(--lightgrey); }
    .guideline-box .item:last-child{ border-bottom:none; padding-bottom:0; }
    .cta-box{ flex-direction:column; align-items:flex-start; }
  }

FirstDigital Wiki · Telecom Services

Caller ID Name (CNAM)

General information on how Caller ID Name works, why it doesn't always display correctly, and the rules that govern what a CNAM entry can contain.

How CNAM Works


When you call someone, your number is transmitted with the call to the receiving party's telephone company. If the person you're calling has Caller ID service, they'll see your name and number.

In the USA, only the calling number is sent with the call. The called party's carrier looks up the name using that number — hopefully from the national database, though some carriers may use a different database of their choosing. Other countries have different methods for delivering the name, or none at all. In the USA, FirstDigital can set the Caller Name in the national database on the customer's behalf.

Why Your CNAM Name May Not Be Displayed Properly


For most phone carriers, there's a cost associated with either querying a third-party CNAM database or keeping their own CNAM database up to date. Some carriers have almost immediate access to the most current CNAM information, while others may not have access to it for several months or longer.

Matters are further complicated by the fact that carriers rely on more than 20 different CNAM databases that don't all contain the same data. Depending on the location and terminating carrier, some people you call may correctly see your CNAM while others may not.

CNAM Guidelines


At least two letters in the calling name field

No special characters

Cannot be all numbers

Must not exceed a maximum of 15 characters

Prohibited Content


To aid in enforcement of the Truth in Caller ID Act of 2009 — a federal law making it unlawful to "transmit misleading or inaccurate caller identification information with the intent to defraud, cause harm, or wrongfully obtain anything of value" (the Act) — the telecommunications industry implemented guidelines defining criteria for unacceptable CNAM entries, in an effort to prevent any indication of impropriety. Prohibited content includes:

  • Generic terms like "SALES TEAM," "CUST SERVICE," "N/A," or a generic geographic location like "CHICAGO, IL," "ATLANTA, GA," "DENVER, CO," etc.
  • Any CNAM that includes indecent, profane, or otherwise offensive words
  • CNAM content that impersonates another company's brand or intellectual property, or a government agency that one does not represent
  • Other restricted words reserved for network use — "BLOCKED," "PRIVATE," "UNKNOWN," "RESTRICTED," "ANONYMOUS," "OUT OF AREA," etc.
  • CNAM containing only numbers; at least one alpha character is required
  • CNAM containing forbidden characters; only letters, numbers, periods, commas, and spaces are permitted
  • Any CNAM longer than 15 characters (extra characters are truncated automatically)

Updating CNAM


If you'd like to update the CNAM for your numbers, reach out to our support team with the required template.

Email support@firstdigital.com
FirstDigital FirstDigital · Internal Wiki

FirstDigital Wiki · Telecom Services

Caller ID Name (CNAM)

General information on how Caller ID Name works, why it doesn't always display correctly, and the rules that govern what a CNAM entry can contain.

How CNAM Works


When you call someone, your number is transmitted with the call to the receiving party's telephone company. If the person you're calling has Caller ID service, they'll see your name and number.

In the USA, only the calling number is sent with the call. The called party's carrier looks up the name using that number — hopefully from the national database, though some carriers may use a different database of their choosing. Other countries have different methods for delivering the name, or none at all. In the USA, FirstDigital can set the Caller Name in the national database on the customer's behalf.

Why Your CNAM Name May Not Be Displayed Properly


For most phone carriers, there's a cost associated with either querying a third-party CNAM database or keeping their own CNAM database up to date. Some carriers have almost immediate access to the most current CNAM information, while others may not have access to it for several months or longer.

Matters are further complicated by the fact that carriers rely on more than 20 different CNAM databases that don't all contain the same data. Depending on the location and terminating carrier, some people you call may correctly see your CNAM while others may not.

CNAM Guidelines


At least two letters in the calling name field

No special characters

Cannot be all numbers

Must not exceed a maximum of 15 characters

Prohibited Content


To aid in enforcement of the Truth in Caller ID Act of 2009 — a federal law making it unlawful to "transmit misleading or inaccurate caller identification information with the intent to defraud, cause harm, or wrongfully obtain anything of value" (the Act) — the telecommunications industry implemented guidelines defining criteria for unacceptable CNAM entries, in an effort to prevent any indication of impropriety. Prohibited content includes:

  • Generic terms like "SALES TEAM," "CUST SERVICE," "N/A," or a generic geographic location like "CHICAGO, IL," "ATLANTA, GA," "DENVER, CO," etc.
  • Any CNAM that includes indecent, profane, or otherwise offensive words
  • CNAM content that impersonates another company's brand or intellectual property, or a government agency that one does not represent
  • Other restricted words reserved for network use — "BLOCKED," "PRIVATE," "UNKNOWN," "RESTRICTED," "ANONYMOUS," "OUT OF AREA," etc.
  • CNAM containing only numbers; at least one alpha character is required
  • CNAM containing forbidden characters; only letters, numbers, periods, commas, and spaces are permitted
  • Any CNAM longer than 15 characters (extra characters are truncated automatically)

Updating CNAM


If you'd like to update the CNAM for your numbers, reach out to our support team with the required template.

Email support@firstdigital.com

FirstDigital FirstDigital · Internal Wiki

Data URI image

FirstDigital Wiki · Telecom Services

Caller ID Name (CNAM)

General information on how Caller ID Name works, why it doesn't always display correctly, and the rules that govern what a CNAM entry can contain.

How CNAM Works


When you call someone, your number is transmitted with the call to the receiving party's telephone company. If the person you're calling has Caller ID service, they'll see your name and number.

In the USA, only the calling number is sent with the call. The called party's carrier looks up the name using that number — hopefully from the national database, though some carriers may use a different database of their choosing. Other countries have different methods for delivering the name, or none at all. In the USA, FirstDigital can set the Caller Name in the national database on the customer's behalf.

Why Your CNAM Name May Not Be Displayed Properly


For most phone carriers, there's a cost associated with either querying a third-party CNAM database or keeping their own CNAM database up to date. Some carriers have almost immediate access to the most current CNAM information, while others may not have access to it for several months or longer.

Matters are further complicated by the fact that carriers rely on more than 20 different CNAM databases that don't all contain the same data. Depending on the location and terminating carrier, some people you call may correctly see your CNAM while others may not.

CNAM Guidelines


At least two letters in the calling name field

No special characters

Cannot be all numbers

Must not exceed a maximum of 15 characters

Prohibited Content


To aid in enforcement of the Truth in Caller ID Act of 2009 — a federal law making it unlawful to "transmit misleading or inaccurate caller identification information with the intent to defraud, cause harm, or wrongfully obtain anything of value" (the Act) — the telecommunications industry implemented guidelines defining criteria for unacceptable CNAM entries, in an effort to prevent any indication of impropriety. Prohibited content includes:

  • Generic terms like "SALES TEAM," "CUST SERVICE," "N/A," or a generic geographic location like "CHICAGO, IL," "ATLANTA, GA," "DENVER, CO," etc.
  • Any CNAM that includes indecent, profane, or otherwise offensive words
  • CNAM content that impersonates another company's brand or intellectual property, or a government agency that one does not represent
  • Other restricted words reserved for network use — "BLOCKED," "PRIVATE," "UNKNOWN," "RESTRICTED," "ANONYMOUS," "OUT OF AREA," etc.
  • CNAM containing only numbers; at least one alpha character is required
  • CNAM containing forbidden characters; only letters, numbers, periods, commas, and spaces are permitted
  • Any CNAM longer than 15 characters (extra characters are truncated automatically)

Updating CNAM


If you'd like to update the CNAM for your numbers, reach out to our support team with the required template.

Email support@firstdigital.com

FirstDigital FirstDigital · Internal Wiki

Data URI image