Alphanumeric sender IDs

आपका ब्रांड नाम from फ़ील्ड में.

Alphanumeric sender ID किसी नंबर के बजाय मैसेज के "from" फ़ील्ड में आपके ब्रांड का नाम डालता है. यह एकतरफ़ा है: recipients नाम देखते हैं पर reply नहीं कर सकते. कई देश इसका समर्थन करते हैं, और कई माँग करते हैं कि डिलीवर होने से पहले आप sender स्ट्रिंग pre-register करें.

send-notification.ts
202 · 0.4s
import { BirdClient } from "@messagebird/sdk";

const bird = new BirdClient({ apiKey: process.env.BIRD_API_KEY! });

const { data, error } = await bird.sms.send({
  from:     "Bird",
  to:       "+31612345678",
  text:     "Your order #4821 has shipped. Track it: bird.ly/t/4821x",
  category: "transactional",
}).safe();

if (error) throw error;
console.log(data.id);
// → "sms_01m11jw130e7svjzv70kgqr38w"
Hi Ada, reminder of your appointment tomorrow at 14:30 with Dr. Kowalski.
Your order #4821 has shipped. Track it: bird.ly/t/4821x
Your subscription renews on 3 Sep for €12/mo. Manage it here: bird.ly/account

जब नाम नंबर से बेहतर हो.

An alphanumeric sender ID is one of the four sender types on Bird SMS numbers, part of the broader Bird SMS API. Reach for it when recipients should see your brand rather than a phone number and you don't need them to reply: notifications, OTP, and one-off alerts where the message is the whole conversation.

Alphanumeric sender आपको क्या देता है.

from फ़ील्ड में ब्रांड, असली सीमाओं के साथ.

  1. 01

    आपका ब्रांड, नंबर नहीं.

    Recipients अंकों की स्ट्रिंग के बजाय एक पहचाना हुआ नाम देखते हैं, जिससे कोई transactional मैसेज एक नज़र में वैध लगता है.

  2. 02

    केवल एकतरफ़ा.

    There's no number behind the name for replies to route to. If a recipient texts back, it goes nowhere. Plan for a different channel or a separate number when you need an answer.

  3. 03

    समर्थन देश पर निर्भर करता है.

    कुछ गंतव्य alphanumeric senders को खुलकर स्वीकार करते हैं, कुछ इन्हें सीमित करते हैं, और कुछ इन्हें बिल्कुल अनुमति नहीं देते. किसी route के लिए सही sender हर देश के हिसाब से तय होने वाला फ़ैसला है.

  4. 04

    अक्सर pre-registration की ज़रूरत.

    कई देशों में डिलीवर होने से पहले sender स्ट्रिंग register करानी होती है, और unregistered IDs को दोबारा लिख दिया या हटा दिया जाता है. send के समय के बजाय send से पहले ही register करें.

  5. 05

    स्ट्रिंग छोटी रखें.

    Alphanumeric sender एक छोटा लेबल है, GSM नेटवर्क पर आमतौर पर 11 अक्षरों तक. कुछ ऐसा चुनें जो recipients के पहले से जाने-पहचाने ब्रांड नाम के करीब हो.

हर send पर sender सेट करें.

Where the destination permits it, you set the sender string on the send itself: pass your brand in the from field instead of a number. The send shape is the same one you use for every sender type; only the from value changes.

alphanumeric.ts
202 · accepted
// "from" is your alphanumeric sender, not a number.
// Permitted per country; often pre-registered first, and never for the US,
// which delivers only from a number you hold.
const { data: message, error } = await bird.sms.send({
  from:     "Bird",
  to:       "+31612345678",
  text:     "Your verification code is 481920.",
  category: "authentication",
}).safe();
if (error) throw error;

// text reads back as "**REDACTED**": an authentication body is not retained.
console.log(message.status, message.text); // → "accepted" "**REDACTED**"

देश के नियम तय करते हैं क्या डिलीवर होगा.

Whether an alphanumeric sender works, and whether it has to be registered first, is set by each destination country and its carriers. Bird handles sender ID registration per country so the string you send is the string recipients see. When you need recipients to reply, use a long code, short code, or toll-free number instead.

जहाँ पहुँचे वहाँ अपने ब्रांड से भेजें.

Alphanumeric sender ID, Bird SMS numbers surface पर एक sender type है. हर देश के लिए स्ट्रिंग register करें, उसे send पर सेट करें, और recipients तक ऐसे नाम से पहुँचें जिस पर वे भरोसा करते हैं.

एक चैनल से शुरुआत करें।
तैयार होने पर बाकी जोड़ें।

एक test API key तुरंत आपकी है। जब आप payment method जोड़ते हैं और sender verify करते हैं, तब production अनलॉक हो जाता है।

Claude Code, Cursor या Codex इस्तेमाल कर रहे हैं? एक setup prompt कॉपी करें और आपका agent आपके लिए Bird CLI और skills इंस्टॉल कर देगा। अपना चुनें:

Cursor