Salesforce
Skill apideck-libraries/api-skills/providers/claude/plugin/skills/salesforce
One abstraction, 146 SaaS connectors. Agent skills for Apideck's Unified API — integrate Salesforce, QuickBooks, BambooHR, Jira, Shopify and 140+ more by changing one string.
npx -y skills add apideck-libraries/api-skills --skill salesforceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Salesforce integration via Apideck's CRM unified API — same methods work across every connector in CRM, switch by changing `serviceId`. Use when the user wants to read, write, or search contacts, companies, leads, opportunities, activities, and pipelines in Salesforce. Routes through Apideck with serviceId "salesforce".
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
7.2 KB, as published. Nobody here has run it
Salesforce (via Apideck)
Access Salesforce through Apideck's CRM unified API — one of 21 CRM connectors that share the same method surface. Code you write here ports to Odoo, HubSpot, Pipedrive and 17 other CRM connectors by changing a single serviceId string. Apideck handles auth, pagination, rate limiting, and retries so you don't write per-tenant Salesforce plumbing.
Quick facts
- Apideck serviceId:
salesforce - Unified API: CRM
- Auth type: oauth2
- Gotchas: page
- Salesforce docs: https://developer.salesforce.com/docs
- Homepage: https://www.salesforce.com
When to use this skill
Activate this skill when the user explicitly wants to work with Salesforce — for example, "pull contacts in Salesforce" or "sync leads in Salesforce". This skill teaches the agent:
- Which Apideck unified API covers Salesforce (CRM)
- The correct
serviceIdto pass on every call (salesforce) - Salesforce-specific auth and coverage caveats
For the full method surface (parameters, pagination, filtering), use your language SDK skill:
apideck-node,apideck-python,apideck-dotnet,apideck-java,apideck-go,apideck-php, orapideck-rest
For the raw OpenAPI spec:
Minimal example (TypeScript)
import { Apideck } from "@apideck/unify";
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: process.env.APIDECK_APP_ID,
consumerId: "your-consumer-id",
});
// List contacts in Salesforce
const { data } = await apideck.crm.contacts.list({
serviceId: "salesforce",
});
Portable across 21 CRM connectors
The Apideck CRM unified API exposes the same methods for every connector in its catalog. Switching from Salesforce to another CRM connector is a one-string change — no rewrite, no new SDK.
// Today — Salesforce
await apideck.crm.contacts.list({ serviceId: "salesforce" });
// Tomorrow — same code, different connector
await apideck.crm.contacts.list({ serviceId: "odoo" });
await apideck.crm.contacts.list({ serviceId: "hubspot" });
This is the compounding advantage of using Apideck over integrating Salesforce directly: code against the unified CRM API once, gain access to every connector in it. New connectors Apideck adds become available to your app without code changes.
Salesforce via Apideck CRM
Salesforce is the reference implementation for Apideck CRM. All Tier 1 CRM resources are supported; coverage is the most complete of any CRM connector.
Entity mapping
| Salesforce object | Apideck CRM resource |
|---|---|
| Contact | contacts |
| Account | companies |
| Lead | leads |
| Opportunity | opportunities |
| Task, Event | activities |
| User | users |
| Note (Task with note body) | notes |
| OpportunityStage / pipeline config | pipelines |
Custom objects (*__c) | use Proxy API — not exposed through unified resources |
Coverage highlights
- ✅ Full CRUD on contacts, companies, leads, opportunities, activities, notes
- ✅ Pagination via cursor (Apideck normalizes SOQL
LIMIT/OFFSETinto cursor tokens) - ✅ Field-level filtering via
filter[...]query params - ✅ Deep pagination beyond 2,000 records (Apideck uses
queryMore/nextRecordsUrlunder the hood) - ❌ Custom objects — use Proxy API with the SOQL endpoint
- ❌ Apex REST endpoints — Proxy API
- ❌ Bulk API (2.0) job creation — Proxy API
Salesforce-specific auth notes
- Type: OAuth 2.0, managed by Apideck Vault
- Sandbox vs. production: the user picks environment during the Vault OAuth flow. The same
serviceIdroutes to both; connection is bound to whichever was chosen. - API daily limits: Salesforce enforces per-org daily API call limits based on edition (Professional/Enterprise/Unlimited). Apideck surfaces Salesforce's remaining-limit headers via
raw=true— monitor these for high-volume integrations. Hitting the daily limit means API calls fail until the 24h rolling window resets.
Common Salesforce quirks handled by Apideck
- Compound fields (e.g.,
BillingAddress) — flattened toaddress.*in the unified shape - Picklist values — exposed verbatim; no enum normalization
- Record types — available as
record_type_idon writes; if omitted Salesforce uses the default for the user's profile - Polymorphic references (e.g.,
WhoIdon Task) — Apideck resolves to the correct entity type inactivity.owner_id
Example: create an opportunity with a contact role
// 1. Create the opportunity
const { data: opp } = await apideck.crm.opportunities.create({
serviceId: "salesforce",
opportunity: {
name: "Acme — Enterprise deal",
amount: 50000,
close_date: "2026-06-30",
stage: "Qualification",
company_id: "001XXXXXXXXXXXXXXX",
},
});
// 2. For contact roles (Salesforce-specific), use Proxy
await fetch("https://unify.apideck.com/proxy", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.APIDECK_API_KEY}`,
"x-apideck-app-id": process.env.APIDECK_APP_ID,
"x-apideck-consumer-id": consumerId,
"x-apideck-service-id": "salesforce",
"x-apideck-downstream-url": "/services/data/v59.0/sobjects/OpportunityContactRole",
"Content-Type": "application/json",
},
body: JSON.stringify({
OpportunityId: opp.data.id,
ContactId: "003XXXXXXXXXXXXXXX",
Role: "Decision Maker",
}),
});
Sibling connectors
Other CRM connectors that share this unified API surface (same method signatures, just change serviceId):
odoo (beta), hubspot, pipedrive, zoho-crm, activecampaign, close, microsoft-dynamics, teamleader, and 12 more.
See also
- CRM OpenAPI spec · API Explorer
apideck-connector-coverage— programmatic coverage checksapideck-best-practices— architecture, Vault, pagination, error handlingapideck-node— TypeScript / Node SDK patterns- Salesforce official docs