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
<PackageReference Include="Soenneker.Instantly.Accounts" Version="4.0.2453" />
<PackageVersion Include="Soenneker.Instantly.Accounts" Version="4.0.2453" />
<PackageReference Include="Soenneker.Instantly.Accounts" />
paket add Soenneker.Instantly.Accounts --version 4.0.2453
#r "nuget: Soenneker.Instantly.Accounts, 4.0.2453"
#:package Soenneker.Instantly.Accounts@4.0.2453
#addin nuget:?package=Soenneker.Instantly.Accounts&version=4.0.2453
#tool nuget:?package=Soenneker.Instantly.Accounts&version=4.0.2453
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 | Versions 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. |
-
net10.0
- Soenneker.Instantly.ClientUtil (>= 4.0.646)
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 |
Updated Multiple NuGet packages