Skip to main content
Version: Streamsheets 3.0

OUTBOXIDS

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

=OUTBOXIDS([IdFilterText])

Arguments

NameTypeDescription
IdFilterText (optional)StringA 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

TypeDescription
StringA list of message IDs.

Examples

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