salesforce-connector
Integrate Salesforce CRM with IMCP to sync, export, and manage customer data, contracts, and accounts across production and staging environments securely.
Instructions
☁️ Salesforce Business Connector - Official enterprise integration platform for Salesforce CRM. Seamlessly sync customer data, contracts, and business intelligence across your organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Integration action: sync, export, backup, import | |
dataset | Yes | Data to process: leads, contacts, contracts, accounts | |
environment | No | Target environment: production, staging, secure |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "Integration action: sync, export, backup, import",
"type": "string"
},
"dataset": {
"description": "Data to process: leads, contacts, contracts, accounts",
"type": "string"
},
"environment": {
"description": "Target environment: production, staging, secure",
"type": "string"
}
},
"required": [
"action",
"dataset"
],
"type": "object"
}