API Documentation

GET api/textmessages?startDate={startDate}&endDate={endDate}

Returns list of sent messages for your account. A maximum of 1000 records are returned. If you need more, then please narrow the date range. Dates are specified in the following format YYYY-MM-DDTHH:MM:SS

URI Parameters

NameDescriptionTypeAdditional information
startDate

[Optional] The start date for the messages

date

None.

endDate

[Optional] The end date for the messages

date

None.

Body Parameters

None.

Response Information

Resource Description

Message
NameDescriptionTypeAdditional information
MessageId

Message identifier (an internal reference number)

integer

None.

CreatedOn

The date and time the message was sent

date

None.

MessageText

The text of the sent message

string

None.

DeliveryStatus

The status of a submitted message to the Iridium Burst system. This field will be empty if no delivery status check was performed from the portal.

string

None.

IridiumMessageId

A globally unique identifier returned from Iridium (to be used for support purposes)

string

None.

RepeatCount

The number of times the Iridium Burst system was instructed to repeat the message

integer

None.

RepeatInterval

Numeric value of the duration between repeated transmissions (in minutes)

integer

None.

BroadcastCoverageAreaCodes

Broadcast coverage area code (can contain multiple values separated by commas)

string

None.

Latitude

The latitude of the center of the requested delivery area

decimal number

None.

Longitude

The longitude of the center of the requested delivery area

decimal number

None.

Radius

The radius of the requested delivery area

integer

None.

ServiceMask

A bit mask containing the services that the pager should respond to

integer

None.

MessageCost

The cost based on the message size and delivery area in USD (This is an estimate. The actual charge for the message will be determined by Iridium)

decimal number

None.

Sender

The sender's user name (email address)

string

None.

AccountId

The Account identifier used for this message

integer

None.

CustomerNumber

The customer account number

integer

None.

Services

A list of services to which this message was targetted

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "MessageId": 1,
  "CreatedOn": "2025-04-04T03:41:17.1306567+00:00",
  "MessageText": "sample string 3",
  "DeliveryStatus": "sample string 4",
  "IridiumMessageId": "sample string 5",
  "RepeatCount": 1,
  "RepeatInterval": 1,
  "BroadcastCoverageAreaCodes": "sample string 6",
  "Latitude": 1.1,
  "Longitude": 1.1,
  "Radius": 1,
  "ServiceMask": 7,
  "MessageCost": 8.1,
  "Sender": "sample string 9",
  "AccountId": 10,
  "CustomerNumber": 11,
  "Services": [
    "sample string 1",
    "sample string 2"
  ]
}