createExportSuspend

@JvmName(name = "createExportSuspend")
suspend fun createExportSuspend(organizationId: String, rangeStart: OffsetDateTime, rangeEnd: OffsetDateTime, actions: List<String>? = null, actors: List<String>? = null, actorNames: List<String>? = null, actorIds: List<String>? = null, targets: List<String>? = null, requestOptions: RequestOptions? = null): AuditLogExportJson

Coroutine-aware variant of createExport. Use this from a suspend function or coroutine scope.

Delegates to the blocking createExport under withContext(Dispatchers.IO), so this is safe to call from any coroutine dispatcher (including Dispatchers.Main).