The message object
The message object represents a single SMS message sent through Postman. It contains all information about the message content, delivery status, and attempts.
Quick reference
Attributes
Core fields
id string
Unique identifier for the message. Use this to:
Retrieve message details and delivery status
Retry a failed message
recipient string Required
The phone number of the message recipient.
Format: Country code + phone number (no leading +)
Example: 6599999999 (Singapore mobile number)
Sending via NRIC
For selected agencies, you can send to NRIC numbers instead of phone numbers:
Note: This is a legacy feature, new capaigns created will not be able to send via NRIC.
language string Required
The language of the message template. One of:
englishchinesemalaytamil
values object Required
Template variables and their values that were inserted into the message.
Important: Avoid using
recipientandlanguageas value keys, as these are reserved mandatory fields.
Message content
fullMessage string
The complete message as sent, including SMS header and footer.
templateBody object
The template definition used to generate this message.
Campaign & tracking
campaignId string
Identifier linking this message to its campaign.
creatorId string
User ID of the person who created this message on the first attempt.
creatorEmail string
Email address of the creator.
Status & delivery
latestStatus string
The current delivery status of the message.
attempts array of objects
Delivery history showing each send attempt with status and timestamp.
If a delivery failed, the attempt includes an error object:
Timestamps
createdAt string
ISO 8601 timestamp when the message was created.
updatedAt string
ISO 8601 timestamp of the last status update.
Message statuses
The table below shows all possible message statuses and what they mean:
created
Pending
Message recorded in system, but not yet queued for sending
enqueued
Pending
Message is in the send queue waiting to be processed
sending
Pending
Message is being sent to the messaging service provider
sent
Sent
Request sent to provider, awaiting delivery confirmation
sent_to_telco
Sent
Message delivered to telco, awaiting device delivery. May not reach device if recipient's phone is off
success
Success
✓ Message delivered to recipient's phone (terminal status)
failure
Failure
✗ Message failed to send (terminal status)
Understanding sent_to_telco
sent_to_telcoWhen a message reaches sent_to_telco status:
The message has successfully reached the recipient's telco
The recipient's device may not have received it yet
The device may be off, in airplane mode, or unreachable
48-hour limit: After 48 hours in
sent_to_telcostatus, you're unlikely to receive further updates from the telco. This is a telco limitation. If needed, compose a new message—the recipient may receive both versions.
Message content guidelines
Supported characters
Postman supports the GSM-7 character set. All other characters are unsupported and should be excluded from message content.
Why this matters: Unsupported characters significantly increase character count and segment count per SMS, which impacts:
Delivery cost
Send queue performance (affects all agencies)
Reliability (unsupported beyond 7 segments due to telco limits)
Best practices
Avoid leading/trailing spaces
The values object must not have content that starts or ends with whitespace. This will cause a 400 Bad Request error.
Keep messages concise
Limit to under 7 message segments
Use supported characters only
Test message length with the Postman message segment calculator
Error handling
When a message fails, the attempts array includes an error object with two fields:
Error types
delivery_error
Message failed to deliver (recipient, routing, or telco issue)
server_error
Postman system error
Error codes
recipient_invalid
Invalid phone number or NRIC format
recipient_unavailable
Recipient not reachable
content_invalid
Message content failed validation
routing_error
Could not route to appropriate provider
delivery_unknown_error
Delivery failed for unknown reason
server_unknown_error
Postman system error
Last updated
Was this helpful?