Soenneker.Instantly.Analytics
4.0.1589
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Instantly.Analytics --version 4.0.1589
NuGet\Install-Package Soenneker.Instantly.Analytics -Version 4.0.1589
<PackageReference Include="Soenneker.Instantly.Analytics" Version="4.0.1589" />
<PackageVersion Include="Soenneker.Instantly.Analytics" Version="4.0.1589" />
<PackageReference Include="Soenneker.Instantly.Analytics" />
paket add Soenneker.Instantly.Analytics --version 4.0.1589
#r "nuget: Soenneker.Instantly.Analytics, 4.0.1589"
#:package Soenneker.Instantly.Analytics@4.0.1589
#addin nuget:?package=Soenneker.Instantly.Analytics&version=4.0.1589
#tool nuget:?package=Soenneker.Instantly.Analytics&version=4.0.1589
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.609)
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.1595 | 0 | 9/1/2026 |
| 4.0.1594 | 0 | 9/1/2026 |
| 4.0.1593 | 0 | 8/31/2026 |
| 4.0.1592 | 22 | 8/31/2026 |
| 4.0.1591 | 28 | 8/31/2026 |
| 4.0.1590 | 39 | 8/31/2026 |
| 4.0.1589 | 60 | 8/31/2026 |
| 4.0.1588 | 41 | 8/31/2026 |
| 4.0.1587 | 48 | 8/30/2026 |
| 4.0.1586 | 85 | 8/30/2026 |
| 4.0.1585 | 36 | 8/30/2026 |
| 4.0.1584 | 68 | 8/29/2026 |
| 4.0.1583 | 66 | 8/28/2026 |
| 4.0.1582 | 87 | 8/26/2026 |
| 4.0.1581 | 65 | 8/26/2026 |
| 4.0.1580 | 84 | 8/25/2026 |
| 4.0.1579 | 110 | 8/22/2026 |
| 4.0.1578 | 131 | 8/22/2026 |
| 4.0.1577 | 88 | 8/22/2026 |
| 4.0.1576 | 187 | 8/21/2026 |
Update dependency Soenneker.Instantly.ClientUtil to 4.0.609 (#2112)