Install
$ agentstack add skill-apideck-libraries-api-skills-apideck-dotnet ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Apideck .NET SDK Skill
Overview
The Apideck Unified API provides a single integration layer to connect with 200+ third-party services across accounting, CRM, HRIS, file storage, ATS, e-commerce, and more. The official .NET SDK (ApideckUnifySdk) provides typed clients for all unified APIs.
Installation
dotnet add package ApideckUnifySdk
IMPORTANT RULES
- ALWAYS use the
ApideckUnifySdkNuGet package. DO NOT make rawHttpClientcalls to the Apideck API. - ALWAYS pass
apiKey,appId, andconsumerIdwhen initializing the client. - USE
ServiceIdto specify which downstream connector to use (e.g.,"salesforce","quickbooks"). - USE async/await for all API calls — all operations return
Task. - ALWAYS handle errors with try/catch using
BaseExceptionas the base class. - DO NOT store API keys in source code. Use environment variables or a secrets manager.
Quick Start
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Requests;
var sdk = new Apideck(
consumerId: "your-consumer-id",
appId: "your-app-id",
apiKey: Environment.GetEnvironmentVariable("APIDECK_API_KEY") ?? ""
);
var res = await sdk.Crm.Contacts.ListAsync(new CrmContactsAllRequest {
ServiceId = "salesforce",
Limit = 20,
});
while (res != null)
{
foreach (var contact in res.GetContactsResponse?.Data ?? [])
{
Console.WriteLine($"{contact.Name} - {contact.Emails?.FirstOrDefault()?.Email}");
}
res = await res.Next!();
}
SDK Patterns
Client Setup
using ApideckUnifySdk;
var sdk = new Apideck(
consumerId: "your-consumer-id",
appId: "your-app-id",
apiKey: Environment.GetEnvironmentVariable("APIDECK_API_KEY") ?? ""
);
CRUD Operations
All resources follow the pattern: sdk.{Api}.{Resource}.{Operation}Async(request).
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Requests;
using ApideckUnifySdk.Models.Components;
// LIST
var listRes = await sdk.Crm.Contacts.ListAsync(new CrmContactsAllRequest {
ServiceId = "salesforce",
Limit = 20,
Filter = new ContactsFilter { Email = "john@example.com" },
Sort = new ContactsSort {
By = ContactsSortBy.UpdatedAt,
Direction = SortDirection.Desc,
},
});
// CREATE
var createRes = await sdk.Crm.Contacts.CreateAsync(new CrmContactsAddRequest {
ServiceId = "salesforce",
Contact = new ContactInput {
FirstName = "John",
LastName = "Doe",
Emails = new List {
new Email { EmailAddress = "john@example.com", Type = EmailType.Primary },
},
PhoneNumbers = new List {
new PhoneNumber { Number = "+1234567890", Type = PhoneNumberType.Mobile },
},
},
});
Console.WriteLine(createRes.CreateContactResponse?.Data?.Id);
// GET
var getRes = await sdk.Crm.Contacts.GetAsync(new CrmContactsOneRequest {
Id = "contact_123",
ServiceId = "salesforce",
});
// UPDATE
var updateRes = await sdk.Crm.Contacts.UpdateAsync(new CrmContactsUpdateRequest {
Id = "contact_123",
ServiceId = "salesforce",
Contact = new ContactInput { FirstName = "Jane" },
});
// DELETE
await sdk.Crm.Contacts.DeleteAsync(new CrmContactsDeleteRequest {
Id = "contact_123",
ServiceId = "salesforce",
});
Pagination
Use the Next method on the response. Returns null when no more pages:
var res = await sdk.Accounting.Invoices.ListAsync(new AccountingInvoicesAllRequest {
ServiceId = "quickbooks",
Limit = 50,
});
while (res != null)
{
foreach (var invoice in res.GetInvoicesResponse?.Data ?? [])
{
Console.WriteLine($"{invoice.Number}: {invoice.Total}");
}
res = await res.Next!();
}
Error Handling
using ApideckUnifySdk.Models.Errors;
try
{
var res = await sdk.Crm.Contacts.GetAsync(new CrmContactsOneRequest { Id = "invalid" });
}
catch (BadRequestResponse e)
{
Console.Error.WriteLine($"Bad request: {e.Message}");
}
catch (UnauthorizedResponse e)
{
Console.Error.WriteLine("Invalid API key or missing credentials");
}
catch (NotFoundResponse e)
{
Console.Error.WriteLine("Record not found");
}
catch (PaymentRequiredResponse e)
{
Console.Error.WriteLine("API limit reached");
}
catch (UnprocessableResponse e)
{
Console.Error.WriteLine($"Validation error: {e.Message}");
}
catch (BaseException e)
{
Console.Error.WriteLine($"API error: {e.Message}");
Console.Error.WriteLine($"Status: {e.Response.StatusCode}");
}
Retry Configuration
var sdk = new Apideck(
retryConfig: new RetryConfig(
strategy: RetryConfig.RetryStrategy.BACKOFF,
backoff: new BackoffStrategy(
initialIntervalMs: 1L,
maxIntervalMs: 50L,
maxElapsedTimeMs: 100L,
exponent: 1.1
),
retryConnectionErrors: false
),
consumerId: "your-consumer-id",
appId: "your-app-id",
apiKey: Environment.GetEnvironmentVariable("APIDECK_API_KEY") ?? ""
);
API Namespaces
| Namespace | Resources | |-----------|-----------| | sdk.Accounting.* | Invoices, Bills, Payments, Customers, Suppliers, LedgerAccounts, JournalEntries, TaxRates, CreditNotes, PurchaseOrders, BalanceSheet, ProfitAndLoss, and more | | sdk.Crm.* | Contacts, Companies, Leads, Opportunities, Activities, Notes, Pipelines, Users | | sdk.Hris.* | Employees, Companies, Departments, Payrolls, TimeOffRequests | | sdk.FileStorage.* | Files, Folders, Drives, DriveGroups, SharedLinks, UploadSessions | | sdk.Ats.* | Applicants, Applications, Jobs | | sdk.Vault.* | Connections, Consumers, Sessions, CustomMappings, Logs | | sdk.Webhook.* | Webhooks, EventLogs |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: apideck-libraries
- Source: apideck-libraries/api-skills
- License: Apache-2.0
- Homepage: https://developers.apideck.com/building-with-llms
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.