Salesforce Service Cloud integration
Salesforce Service Cloud is a customer service platform providing case…
- Provider
- salesforce_service_cloud
- Category
- Crm
- Setup
- Bring-your-own OAuth credentials
- Actions
- 25 available
Quick start
Call Salesforce Service Cloud from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Salesforce Service Cloud's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"SALESFORCE_SERVICE_CLOUD_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
This integration uses OAuth, but the platform credentials for Salesforce Service Cloud haven't been registered yet. Reach out to the OverSkill team so we can register the OAuth client_id / client_secret — until then the "Connect" button won't work.
Available actions
25 actions exposed via the
Salesforce Service Cloud integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SALESFORCE_SERVICE_CLOUD_AGENT_SENSITIVE_DATA_RULE_TRIGGERED -
SALESFORCE_SERVICE_CLOUD_CHASITOR_SNEAK_PEEK -
SALESFORCE_SERVICE_CLOUD_COMPOSITE_BATCH -
SALESFORCE_SERVICE_CLOUD_COMPOSITE_REQUEST -
SALESFORCE_SERVICE_CLOUD_COMPOSITE_SOBJECT_TREE -
SALESFORCE_SERVICE_CLOUD_CREATE_CASE_RECORD -
SALESFORCE_SERVICE_CLOUD_DELETE_CASE_RECORD -
SALESFORCE_SERVICE_CLOUD_DESCRIBE_S_OBJECT -
SALESFORCE_SERVICE_CLOUD_END_CHAT_SESSION -
SALESFORCE_SERVICE_CLOUD_GENERATE_REQUEST_ID -
SALESFORCE_SERVICE_CLOUD_GENERATE_SIGNED_JWT_ASSERTION -
SALESFORCE_SERVICE_CLOUD_GET_CASE_RECORD
Show all 25 actions
-
SALESFORCE_SERVICE_CLOUD_GET_CHAT_MESSAGES -
SALESFORCE_SERVICE_CLOUD_GET_LIVE_AGENT_API_VERSION -
SALESFORCE_SERVICE_CLOUD_LIST_EINSTEIN_BOTS -
SALESFORCE_SERVICE_CLOUD_QUERY_ALL_SOQL -
SALESFORCE_SERVICE_CLOUD_QUERY_SOQL -
SALESFORCE_SERVICE_CLOUD_RECONNECT_CHAT_SESSION -
SALESFORCE_SERVICE_CLOUD_RESYNC_CHASITOR_STATE -
SALESFORCE_SERVICE_CLOUD_RETRIEVE_CONNECTED_APP_PRIVATE_KEY -
SALESFORCE_SERVICE_CLOUD_RETRIEVE_SALESFORCE_USERNAME -
SALESFORCE_SERVICE_CLOUD_SEND_CUSTOM_EVENT -
SALESFORCE_SERVICE_CLOUD_SET_BREADCRUMB -
SALESFORCE_SERVICE_CLOUD_UPLOAD_FILE_TO_S3 -
SALESFORCE_SERVICE_CLOUD_VISITOR_SENSITIVE_DATA_RULE
Build with Salesforce Service Cloud
Open OverSkill, describe what you want to build, and reference Salesforce Service Cloud in your prompt — the AI will wire up the integration automatically.