Skip to main content
Version: Streamsheets 2.5

OUTBOX.GETIDS

Creates a list with IDs of all messages currently available in the outbox. An optional id filter can be specified to control which IDs to return.

Syntax

=OUTBOX.GETIDS([IdFilterText])

Arguments

NameDescription
IdFilterText (optional)A text to filter IDs. Excel wildcards like * and ? are supported. If not specified the returned list contains the IDs of all messages currently in outbox.

Return

A list of message IDs.

Examples

FormulaResultComment
=OUTBOX.GETIDS()
["message.id1", "message.id2"]Returns a list with message identifiers that can be used to reference outbox messages.
=OUTBOX.GETIDS("?id2")
["message.id2"]Returns a list with message identifiers that can be used to reference outbox messages.