Soenneker.Instantly.Analytics
4.0.1599
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Instantly.Analytics --version 4.0.1599
NuGet\Install-Package Soenneker.Instantly.Analytics -Version 4.0.1599
<PackageReference Include="Soenneker.Instantly.Analytics" Version="4.0.1599" />
<PackageVersion Include="Soenneker.Instantly.Analytics" Version="4.0.1599" />
<PackageReference Include="Soenneker.Instantly.Analytics" />
paket add Soenneker.Instantly.Analytics --version 4.0.1599
#r "nuget: Soenneker.Instantly.Analytics, 4.0.1599"
#:package Soenneker.Instantly.Analytics@4.0.1599
#addin nuget:?package=Soenneker.Instantly.Analytics&version=4.0.1599
#tool nuget:?package=Soenneker.Instantly.Analytics&version=4.0.1599
Soenneker.Instantly.Analytics
Retrieve campaign metrics for one campaign or the entire Instantly workspace, plus a campaign overview.
Install
dotnet add package Soenneker.Instantly.Analytics
Configure and register
{
"Instantly": {
"ApiKey": "<API key>"
}
}
using Soenneker.Instantly.Analytics.Registrars;
services.AddInstantlyAnalyticsUtilAsScoped();
The scoped analytics service deliberately uses the singleton generated-client provider. Use AddInstantlyAnalyticsUtilAsSingleton() when the operation layer should also live for the application lifetime.
Campaign metrics
using Soenneker.Instantly.Analytics.Abstract;
using Soenneker.Instantly.OpenApiClient.Models;
GetCampaignAnalytics200ResponseSchemaItem? metrics =
await analytics.GetCampaignCount(
campaignId,
startAt: new DateTimeOffset(2026, 8, 1, 0, 0, 0, TimeSpan.Zero),
endAt: new DateTimeOffset(2026, 8, 31, 0, 0, 0, TimeSpan.Zero),
cancellationToken: cancellationToken);
Dates are sent as yyyy-MM-dd. GetCampaignCount returns the first analytics row for the requested campaign, or null when the API returns no rows.
All campaign metrics
List<GetCampaignAnalytics200ResponseSchemaItem>? metrics =
await analytics.GetCampaignsCounts(
startAt,
endAt,
cancellationToken);
Omit endAt to let Instantly use its current-date behavior.
Campaign overview
GetCampaignAnalyticsOverview200Response? overview =
await analytics.GetCampaignSummary(
campaignId,
cancellationToken);
API and deserialization failures are surfaced to the caller; nullable results indicate that Instantly returned no response body or no analytics row.
| 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.619)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Instantly.Analytics:
| 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.1627 | 36 | 9/10/2026 |
| 4.0.1626 | 39 | 9/9/2026 |
| 4.0.1625 | 40 | 9/9/2026 |
| 4.0.1624 | 36 | 9/9/2026 |
| 4.0.1623 | 67 | 9/9/2026 |
| 4.0.1622 | 36 | 9/9/2026 |
| 4.0.1621 | 55 | 9/9/2026 |
| 4.0.1620 | 55 | 9/8/2026 |
| 4.0.1619 | 77 | 9/8/2026 |
| 4.0.1618 | 71 | 9/8/2026 |
| 4.0.1617 | 78 | 9/8/2026 |
| 4.0.1616 | 90 | 9/8/2026 |
| 4.0.1615 | 75 | 9/8/2026 |
| 4.0.1614 | 109 | 9/7/2026 |
| 4.0.1613 | 96 | 9/7/2026 |
| 4.0.1612 | 117 | 9/5/2026 |
| 4.0.1611 | 94 | 9/5/2026 |
| 4.0.1610 | 93 | 9/5/2026 |
| 4.0.1609 | 102 | 9/5/2026 |
| 4.0.1599 | 110 | 9/4/2026 |
Update dependency Soenneker.Instantly.ClientUtil to 4.0.619 (#2127)