InboxResource

Provides operations for managing inboxes: list, create, get, update, and delete.

Functions

Link copied to clipboard
suspend fun create(block: CreateInboxBuilder.() -> Unit = {}): Inbox

Creates a new inbox.

Link copied to clipboard
suspend fun delete(inboxId: String)

Deletes an inbox by ID.

Link copied to clipboard
suspend fun get(inboxId: String): Inbox

Retrieves an inbox by ID.

Link copied to clipboard
suspend fun list(block: ListInboxesBuilder.() -> Unit = {}): InboxList

Lists inboxes with optional pagination.

Link copied to clipboard
suspend fun update(inboxId: String, block: UpdateInboxBuilder.() -> Unit): Inbox

Updates an inbox by ID.