Soenneker.Loops.OpenApiClient
4.0.152
Prefix Reserved
dotnet add package Soenneker.Loops.OpenApiClient --version 4.0.152
NuGet\Install-Package Soenneker.Loops.OpenApiClient -Version 4.0.152
<PackageReference Include="Soenneker.Loops.OpenApiClient" Version="4.0.152" />
<PackageVersion Include="Soenneker.Loops.OpenApiClient" Version="4.0.152" />
<PackageReference Include="Soenneker.Loops.OpenApiClient" />
paket add Soenneker.Loops.OpenApiClient --version 4.0.152
#r "nuget: Soenneker.Loops.OpenApiClient, 4.0.152"
#:package Soenneker.Loops.OpenApiClient@4.0.152
#addin nuget:?package=Soenneker.Loops.OpenApiClient&version=4.0.152
#tool nuget:?package=Soenneker.Loops.OpenApiClient&version=4.0.152
Soenneker.Loops.OpenApiClient
Call Loops endpoints through a Kiota-generated client with typed request builders and models.
Install
dotnet add package Soenneker.Loops.OpenApiClient
Create a client
using Microsoft.Kiota.Abstractions.Authentication;
using Microsoft.Kiota.Http.HttpClientLibrary;
using Soenneker.Loops.OpenApiClient;
var httpClient = new HttpClient
{
BaseAddress = new Uri("https://app.loops.so/api/")
};
httpClient.DefaultRequestHeaders.Add("Authorization", $"Bearer {apiKey}");
var adapter = new HttpClientRequestAdapter(
new AnonymousAuthenticationProvider(),
httpClient: httpClient);
var client = new LoopsOpenApiClient(adapter);
Reuse the transport rather than constructing one per request, and dispose it with its owning application component. For application registration, lazy reuse, and coordinated ownership, use Soenneker.Loops.ClientUtil.
Create a contact
using Soenneker.Loops.OpenApiClient.Models;
var request = new ContactRequest
{
Email = "person@example.com",
FirstName = "Morgan",
Subscribed = true
};
ContactSuccessResponse? created = await client.V1.Contacts.Create.PostAsync(
request,
cancellationToken: cancellationToken);
Find a contact
List<Contact>? matches = await client.V1.Contacts.Find.GetAsync(
config => config.QueryParameters.Email = "person@example.com",
cancellationToken);
The generated surface begins at client.V1. Follow its request builders for contacts, events, transactional email, lists, campaigns, workflows, and other resources. HTTP failures are surfaced through Kiota exceptions; nullable results indicate no response body.
This repository contains generated code. Put reusable helpers and behavior changes in a separate package so regeneration does not overwrite them.
| 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
- Microsoft.Kiota.Http.HttpClientLibrary (>= 2.0.0)
- Microsoft.Kiota.Serialization.Form (>= 2.0.0)
- Microsoft.Kiota.Serialization.Json (>= 2.0.0)
- Microsoft.Kiota.Serialization.Multipart (>= 2.0.0)
- Microsoft.Kiota.Serialization.Text (>= 2.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Loops.OpenApiClient:
| Package | Downloads |
|---|---|
|
Soenneker.Loops.ClientUtil
Provides a lazily created Loops generated client over the shared authenticated transport |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.152 | 0 | 8/31/2026 |
| 4.0.151 | 70 | 8/31/2026 |
| 4.0.150 | 51 | 8/30/2026 |
| 4.0.149 | 175 | 8/29/2026 |
| 4.0.148 | 588 | 8/18/2026 |
| 4.0.147 | 171 | 8/15/2026 |
| 4.0.146 | 139 | 8/14/2026 |
| 4.0.145 | 584 | 8/5/2026 |
| 4.0.144 | 144 | 8/4/2026 |
| 4.0.143 | 153 | 8/3/2026 |
| 4.0.142 | 162 | 8/1/2026 |
| 4.0.141 | 219 | 7/29/2026 |
| 4.0.140 | 391 | 7/28/2026 |
| 4.0.139 | 221 | 7/24/2026 |
| 4.0.138 | 173 | 7/23/2026 |
| 4.0.137 | 172 | 7/22/2026 |
| 4.0.136 | 155 | 7/21/2026 |
| 4.0.135 | 484 | 7/16/2026 |
| 4.0.134 | 102 | 7/16/2026 |
| 4.0.133 | 668 | 7/10/2026 |
Automated update