Check phone number activity, carrier details, line type and more.
Fiji SMS Best Practices, Compliance, and Features
Fiji SMS Market Overview
Locale name:
Fiji
ISO code:
FJ
Region
Oceania
Mobile country code (MCC)
542
Dialing Code
+679
Market Conditions: Fiji's mobile market is dominated by two major operators - Vodafone Fiji Limited (VFL) and Digicel Fiji. SMS remains a crucial communication channel, particularly for business notifications and authentication services. While OTT messaging apps like WhatsApp and Viber are gaining popularity, SMS maintains its position as a reliable channel for critical communications due to its universal reach and network independence.
Key SMS Features and Capabilities in Fiji
Fiji supports standard SMS features with some limitations, primarily offering one-way messaging capabilities with support for concatenated messages and URL-based media sharing.
Two-way SMS Support
Two-way SMS is not supported in Fiji through standard API providers. Businesses looking to implement interactive messaging solutions should consider alternative communication channels or work directly with local carriers.
Concatenated Messages (Segmented SMS)
Support: Yes, concatenation is supported, though availability may vary by sender ID type. Message length rules:
Unicode: 67 characters per segment (max 3 segments, 201 total) Encoding considerations: Use GSM-7 for standard English messages and Unicode (UCS-2) for iTaukei or Hindi content.
MMS Support
MMS messages are automatically converted to SMS with an embedded URL link. When sending rich media content, ensure your URLs are shortened and landing pages are mobile-optimized for the best user experience.
Recipient Phone Number Compatibility
Number Portability
Number portability is not available in Fiji. This means phone numbers remain tied to their original carrier, simplifying message routing and delivery.
Sending SMS to Landlines
Sending SMS to landline numbers is not supported in Fiji. Attempts to send messages to landline numbers will result in a failed delivery and an error response (400 error code 21614) from the API, with no charges applied to your account.
Compliance and Regulatory Guidelines for SMS in Fiji
The Telecommunications Authority of Fiji (TAF) oversees SMS communications and establishes guidelines to protect consumers. All SMS marketing activities must comply with the Fiji Telecommunications Act and associated regulations.
Consent and Opt-In
Explicit Consent Requirements:
Obtain and document clear, explicit opt-in consent before sending any marketing messages
Maintain detailed consent records for a minimum of 7 years
Include clear terms and conditions during the opt-in process
Provide transparent information about message frequency and content type
Best Practices for Consent Collection:
Use double opt-in verification for marketing lists
Document consent source, timestamp, and IP address
Maintain an auditable trail of consent records
Regular validation of consent database
HELP/STOP and Other Commands
All marketing messages must include clear opt-out instructions
Support standard keywords: STOP, CANCEL, UNSUBSCRIBE, HELP
Process opt-out requests within 24 hours
Support both English and local language commands (iTaukei and Hindi)
Respond to HELP requests with service information and support contact details
Do Not Call / Do Not Disturb Registries
While Fiji does not maintain a centralized Do Not Call registry, businesses must:
Maintain their own suppression lists
Honor opt-out requests immediately
Keep records of opted-out numbers for at least 2 years
Implement proper filtering systems to prevent messaging to opted-out numbers
Time Zone Sensitivity
Messaging Hours:
Restrict marketing messages to 8 AM - 6 PM FJT (UTC+12)
Avoid messaging during public holidays and weekends
Emergency notifications may be sent outside these hours
Implement 48-hour cooling-off periods between campaigns
Phone Numbers Options and SMS Sender Types for in Fiji
Alphanumeric Sender ID
Operator network capability: Supported with dynamic usage Registration requirements: No pre-registration required Sender ID preservation: Sender IDs are generally preserved, but generic terms like "InfoSMS" or "Verify" should be avoided to prevent delivery failures
Long Codes
Domestic vs. International: International long codes supported; domestic long codes not available Sender ID preservation: Original sender ID preserved for international numbers Provisioning time: Immediate for international numbers Use cases: Transactional messages, alerts, and notifications
Short Codes
Support: Not currently supported in Fiji Provisioning time: N/A Use cases: N/A
Restricted SMS Content, Industries, and Use Cases
Restricted Industries and Content:
Gambling and betting services
Adult content or services
Cryptocurrency promotions
Unauthorized financial services
Political messaging without proper authorization
Content Filtering
Carrier Filtering Rules:
Messages containing restricted keywords are blocked
Spam-like content patterns face increased scrutiny
Best Practices to Avoid Filtering:
Avoid excessive punctuation and all-caps text
Use approved URL shorteners
Maintain consistent sending patterns
Include clear business identification
Avoid common spam trigger words
Best Practices for Sending SMS in Fiji
Messaging Strategy
Keep messages under 160 characters when possible
Include clear call-to-action
Use personalization tokens thoughtfully
Maintain consistent sender ID across campaigns
Sending Frequency and Timing
Limit to 4-5 messages per month per recipient
Respect local holidays and cultural events
Implement frequency capping
Allow minimum 24-hour gaps between marketing messages
Localization
Support English, iTaukei, and Hindi languages
Use appropriate character encoding for local languages
Consider cultural sensitivities in message content
Offer language preference selection during opt-in
Opt-Out Management
Process opt-outs in real-time
Send confirmation message for opt-out requests
Maintain centralized opt-out database
Regular audit of opt-out list compliance
Testing and Monitoring
Test messages across both major carriers
Monitor delivery rates by carrier
Track engagement metrics
Regular testing of opt-out functionality
Monitor and analyze failure patterns
SMS API integrations for Fiji
Twilio
Twilio provides reliable SMS delivery to Fiji through their Sydney edge location. Integration requires your Account SID and Auth Token from the Twilio Console.
import{ Twilio }from'twilio';// Initialize client with Sydney region for optimal routing to Fijiconst client =newTwilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN,{ region:'sydney', edge:'sydney'});// Send SMS to Fiji numberasyncfunctionsendSMSToFiji(){try{const message =await client.messages.create({ body:'Hello from Fiji!',// Message content from: process.env.TWILIO_PHONE_NUMBER,// Your Twilio number to:'+679XXXXXXXX'// Fiji number in E.164 format});console.log(`Message sent successfully: ${message.sid}`);}catch(error){console.error('Error sending message:', error);}}
Sinch
Sinch offers SMS capabilities to Fiji through their global messaging infrastructure. Authentication uses your Service Plan ID and API Token.