Soenneker.Instantly.Accounts 4.0.2453

Prefix Reserved
dotnet add package Soenneker.Instantly.Accounts --version 4.0.2453
                    
NuGet\Install-Package Soenneker.Instantly.Accounts -Version 4.0.2453
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Instantly.Accounts" Version="4.0.2453" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Instantly.Accounts" Version="4.0.2453" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Instantly.Accounts" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Instantly.Accounts --version 4.0.2453
                    
#r "nuget: Soenneker.Instantly.Accounts, 4.0.2453"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Instantly.Accounts@4.0.2453
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Instantly.Accounts&version=4.0.2453
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Instantly.Accounts&version=4.0.2453
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Instantly.Accounts

List Instantly sending accounts one page at a time or retrieve all pages as one result.

Install

dotnet add package Soenneker.Instantly.Accounts

Configure and register

{
  "Instantly": {
    "ApiKey": "<API key>",
    "LogEnabled": false
  }
}
using Soenneker.Instantly.Accounts.Registrars;

services.AddInstantlyAccountsUtilAsScoped();

The scoped accounts service deliberately uses the singleton generated-client provider. Use AddInstantlyAccountsUtilAsSingleton() when the operation layer should also live for the application lifetime.

Get one page

using Soenneker.Instantly.Accounts.Abstract;
using Soenneker.Instantly.OpenApiClient.Models;

ListAccount200Response? page = await accounts.GetList(
    limit: 50,
    skip: startingAfter,
    cancellationToken: cancellationToken);

When limit is omitted, GetList requests 10 accounts. skip is converted to UTC and sent as Instantly's starting_after timestamp cursor.

Get every account

ListAccount200Response allAccounts = await accounts.GetAllAccounts(
    cancellationToken: cancellationToken);

GetAllAccounts requests batches of 100 and follows next_starting_after until the API returns a short page or no next cursor. You can pass startingAfter to resume from a known timestamp. The returned response combines every retrieved page into Items.

API and deserialization failures are not suppressed. If Instantly repeats a pagination cursor, the method throws instead of looping indefinitely.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Soenneker.Instantly.Accounts:

Package Downloads
Soenneker.Instantly.Suite

Registers Instantly account, analytics, DFY, lead, Unibox, and email-verification operations together

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.2453 0 9/9/2026
4.0.2452 0 9/9/2026
4.0.2451 0 9/9/2026
4.0.2450 0 9/9/2026
4.0.2449 23 9/8/2026
4.0.2448 36 9/8/2026
4.0.2447 69 9/8/2026
4.0.2446 52 9/8/2026
4.0.2445 57 9/7/2026
4.0.2444 62 9/7/2026
4.0.2443 44 9/7/2026
4.0.2442 172 9/4/2026
4.0.2441 75 9/4/2026
4.0.2440 85 9/4/2026
4.0.2439 97 9/4/2026
4.0.2436 92 9/4/2026
4.0.2435 85 9/3/2026
4.0.2434 150 9/1/2026
4.0.2433 91 9/1/2026
4.0.2432 99 9/1/2026
Loading failed

Updated Multiple NuGet packages