{
  "info": {
    "name": "Salesforce — mcp.ai",
    "description": "REST API for the Salesforce MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/salesforce",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "salesforce_account_creation_with_content_type_option",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/account/creation/with/content/type/option",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "account",
            "creation",
            "with",
            "content",
            "type",
            "option"
          ]
        },
        "description": "Deprecated: creates a new salesforce account using a json post request, requiring 'name'; specific fields (e.g., custom, dunsnumber) may have org-level prerequisites.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"Fax\": \"\",\n  \"Sic\": \"\",\n  \"Name\": \"\",\n  \"Site\": \"\",\n  \"Type\": \"\",\n  \"Phone\": \"\",\n  \"Jigsaw\": \"\",\n  \"Rating\": \"\",\n  \"SLA__c\": \"\",\n  \"OwnerId\": \"\",\n  \"SicDesc\": \"\",\n  \"Website\": \"\",\n  \"Industry\": \"\",\n  \"ParentId\": \"\",\n  \"PhotoUrl\": \"\",\n  \"Active__c\": \"\",\n  \"IsDeleted\": false,\n  \"NaicsCode\": \"\",\n  \"NaicsDesc\": \"\",\n  \"Ownership\": \"\",\n  \"DunsNumber\": \"\",\n  \"Tradestyle\": \"\",\n  \"BillingCity\": \"\",\n  \"CleanStatus\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"YearStarted\": \"\",\n  \"BillingState\": \"\",\n  \"ShippingCity\": \"\",\n  \"TickerSymbol\": \"\",\n  \"AccountNumber\": \"\",\n  \"AccountSource\": \"\",\n  \"AnnualRevenue\": 0,\n  \"BillingStreet\": \"\",\n  \"ShippingState\": \"\",\n  \"BillingCountry\": \"\",\n  \"DandbCompanyId\": \"\",\n  \"LastViewedDate\": \"\",\n  \"MasterRecordId\": \"\",\n  \"ShippingStreet\": \"\",\n  \"SystemModstamp\": \"\",\n  \"BillingLatitude\": 0,\n  \"JigsawCompanyId\": \"\",\n  \"ShippingCountry\": \"\",\n  \"attributes__url\": \"\",\n  \"BillingLongitude\": 0,\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"OperatingHoursId\": \"\",\n  \"ShippingLatitude\": 0,\n  \"attributes__type\": \"\",\n  \"BillingPostalCode\": \"\",\n  \"NumberOfEmployees\": 0,\n  \"ShippingLongitude\": 0,\n  \"LastReferencedDate\": \"\",\n  \"SLASerialNumber__c\": \"\",\n  \"ShippingPostalCode\": \"\",\n  \"CustomerPriority__c\": \"\",\n  \"NumberofLocations__c\": 0,\n  \"SLAExpirationDate__c\": \"\",\n  \"UpsellOpportunity__c\": \"\",\n  \"BillingGeocodeAccuracy\": \"\",\n  \"ShippingGeocodeAccuracy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_add_contact_to_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact/to/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact",
            "to",
            "campaign"
          ]
        },
        "description": "Adds a contact to a campaign by creating a campaignmember record, allowing you to track campaign engagement.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"contact_id\": \"\",\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_add_lead_to_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/lead/to/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "lead",
            "to",
            "campaign"
          ]
        },
        "description": "Adds a lead to a campaign by creating a campaignmember record, allowing you to track campaign engagement.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"lead_id\": \"\",\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_add_opportunity_line_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/opportunity/line/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "opportunity",
            "line",
            "item"
          ]
        },
        "description": "Adds a product (line item) to an opportunity. the product must exist in a pricebook entry that's associated with the opportunity's pricebook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"discount\": 0,\n  \"quantity\": 0,\n  \"unit_price\": 0,\n  \"description\": \"\",\n  \"total_price\": 0,\n  \"service_date\": \"\",\n  \"opportunity_id\": \"\",\n  \"pricebook_entry_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_apply_lead_assignment_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/apply/lead/assignment/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "apply",
            "lead",
            "assignment",
            "rules"
          ]
        },
        "description": "Applies configured lead assignment rules to a specific lead, automatically routing it to the appropriate owner based on your organization's rules.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_associate_contact_to_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/associate/contact/to/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "associate",
            "contact",
            "to",
            "account"
          ]
        },
        "description": "Associates a contact with an account by updating the contact's accountid field.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\",\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_clone_opportunity_with_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clone/opportunity/with/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clone",
            "opportunity",
            "with",
            "products"
          ]
        },
        "description": "Clones an opportunity and optionally its products (line items). creates a new opportunity with the same field values and products as the original.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"new_name\": \"\",\n  \"close_date\": \"\",\n  \"stage_name\": \"\",\n  \"clone_products\": false,\n  \"opportunity_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_clone_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clone/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clone",
            "record"
          ]
        },
        "description": "Creates a copy of an existing salesforce record by reading its data, removing system fields, and creating a new record. optionally apply field updates to the clone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"record_id\": \"\",\n  \"object_type\": \"\",\n  \"field_updates\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_complete_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/complete/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "complete",
            "task"
          ]
        },
        "description": "Marks a task as completed with optional completion notes. this is a convenience action that updates the task status to 'completed'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"completion_notes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account"
          ]
        },
        "description": "Creates a new account in salesforce with the specified information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fax\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"phone\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"sic_desc\": \"\",\n  \"parent_id\": \"\",\n  \"description\": \"\",\n  \"billing_city\": \"\",\n  \"billing_state\": \"\",\n  \"shipping_city\": \"\",\n  \"account_source\": \"\",\n  \"annual_revenue\": 0,\n  \"billing_street\": \"\",\n  \"shipping_state\": \"\",\n  \"billing_country\": \"\",\n  \"shipping_street\": \"\",\n  \"shipping_country\": \"\",\n  \"billing_postal_code\": \"\",\n  \"number_of_employees\": 0,\n  \"shipping_postal_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "campaign"
          ]
        },
        "description": "Creates a new campaign in salesforce with the specified information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"status\": \"\",\n  \"end_date\": \"\",\n  \"is_active\": false,\n  \"parent_id\": \"\",\n  \"start_date\": \"\",\n  \"actual_cost\": 0,\n  \"description\": \"\",\n  \"number_sent\": 0,\n  \"budgeted_cost\": 0,\n  \"expected_revenue\": 0,\n  \"expected_response\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_campaign_record_via_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/campaign/record/via/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "campaign",
            "record",
            "via",
            "post"
          ]
        },
        "description": "Deprecated: creates a new campaign record in salesforce; if 'parentid' is provided, it must be a valid id of an existing campaign record, and if 'ownerid' is provided, it must be a valid id of an acti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"Name\": \"\",\n  \"Type\": \"\",\n  \"Status\": \"\",\n  \"EndDate\": \"\",\n  \"OwnerId\": \"\",\n  \"IsActive\": false,\n  \"ParentId\": \"\",\n  \"IsDeleted\": false,\n  \"StartDate\": \"\",\n  \"ActualCost\": 0,\n  \"NumberSent\": 0,\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"BudgetedCost\": 0,\n  \"NumberOfLeads\": 0,\n  \"LastViewedDate\": \"\",\n  \"SystemModstamp\": \"\",\n  \"ExpectedRevenue\": 0,\n  \"attributes__url\": \"\",\n  \"ExpectedResponse\": 0,\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"NumberOfContacts\": 0,\n  \"attributes__type\": \"\",\n  \"NumberOfResponses\": 0,\n  \"LastReferencedDate\": \"\",\n  \"NumberOfOpportunities\": 0,\n  \"AmountAllOpportunities\": 0,\n  \"AmountWonOpportunities\": 0,\n  \"NumberOfConvertedLeads\": 0,\n  \"NumberOfWonOpportunities\": 0,\n  \"CampaignMemberRecordTypeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Creates a new contact in salesforce with the specified information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"title\": \"\",\n  \"birthdate\": \"\",\n  \"last_name\": \"\",\n  \"account_id\": \"\",\n  \"department\": \"\",\n  \"first_name\": \"\",\n  \"description\": \"\",\n  \"lead_source\": \"\",\n  \"mailing_city\": \"\",\n  \"mobile_phone\": \"\",\n  \"mailing_state\": \"\",\n  \"mailing_street\": \"\",\n  \"mailing_country\": \"\",\n  \"mailing_postal_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "lead"
          ]
        },
        "description": "Creates a new lead in salesforce with the specified information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"title\": \"\",\n  \"rating\": \"\",\n  \"status\": \"\",\n  \"street\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"description\": \"\",\n  \"lead_source\": \"\",\n  \"postal_code\": \"\",\n  \"annual_revenue\": 0,\n  \"number_of_employees\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_lead_with_specified_content_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/lead/with/specified/content/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "lead",
            "with",
            "specified",
            "content",
            "type"
          ]
        },
        "description": "Deprecated: creates a new lead in salesforce, requiring `lastname` and `company` unless person accounts are enabled and `company` is null.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"City\": \"\",\n  \"Email\": \"\",\n  \"Phone\": \"\",\n  \"State\": \"\",\n  \"Title\": \"\",\n  \"Jigsaw\": \"\",\n  \"Rating\": \"\",\n  \"Status\": \"\",\n  \"Street\": \"\",\n  \"Company\": \"\",\n  \"Country\": \"\",\n  \"OwnerId\": \"\",\n  \"Website\": \"\",\n  \"Industry\": \"\",\n  \"LastName\": \"\",\n  \"PhotoUrl\": \"\",\n  \"FirstName\": \"\",\n  \"IsDeleted\": false,\n  \"LeadSource\": \"\",\n  \"PostalCode\": \"\",\n  \"Primary__c\": \"\",\n  \"SICCode__c\": \"\",\n  \"Salutation\": \"\",\n  \"CleanStatus\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"IsConverted\": false,\n  \"IndividualId\": \"\",\n  \"AnnualRevenue\": 0,\n  \"ConvertedDate\": \"\",\n  \"DandbCompanyId\": \"\",\n  \"LastViewedDate\": \"\",\n  \"MasterRecordId\": \"\",\n  \"SystemModstamp\": \"\",\n  \"IsUnreadByOwner\": false,\n  \"JigsawContactId\": \"\",\n  \"attributes__url\": \"\",\n  \"EmailBouncedDate\": \"\",\n  \"IsPriorityRecord\": false,\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"attributes__type\": \"\",\n  \"CompanyDunsNumber\": \"\",\n  \"NumberOfEmployees\": 0,\n  \"ConvertedAccountId\": \"\",\n  \"ConvertedContactId\": \"\",\n  \"EmailBouncedReason\": \"\",\n  \"LastReferencedDate\": \"\",\n  \"ProductInterest__c\": \"\",\n  \"CurrentGenerators__c\": \"\",\n  \"NumberofLocations__c\": 0,\n  \"ConvertedOpportunityId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_new_contact_with_json_header",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/contact/with/json/header",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "contact",
            "with",
            "json",
            "header"
          ]
        },
        "description": "Deprecated: creates a new contact in salesforce; 'lastname' is required, an existing 'accountid' must be used if provided, and any custom fields (ending with '  c') must be predefined.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"Fax\": \"\",\n  \"Name\": \"\",\n  \"Email\": \"\",\n  \"Phone\": \"\",\n  \"Title\": \"\",\n  \"Jigsaw\": \"\",\n  \"OwnerId\": \"\",\n  \"LastName\": \"\",\n  \"Level__c\": \"\",\n  \"PhotoUrl\": \"\",\n  \"AccountId\": \"\",\n  \"Birthdate\": \"\",\n  \"FirstName\": \"\",\n  \"HomePhone\": \"\",\n  \"IsDeleted\": false,\n  \"OtherCity\": \"\",\n  \"Department\": \"\",\n  \"LeadSource\": \"\",\n  \"OtherPhone\": \"\",\n  \"OtherState\": \"\",\n  \"Salutation\": \"\",\n  \"CleanStatus\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"MailingCity\": \"\",\n  \"MobilePhone\": \"\",\n  \"OtherStreet\": \"\",\n  \"ReportsToId\": \"\",\n  \"IndividualId\": \"\",\n  \"Languages__c\": \"\",\n  \"MailingState\": \"\",\n  \"OtherCountry\": \"\",\n  \"AssistantName\": \"\",\n  \"ContactSource\": \"\",\n  \"MailingStreet\": \"\",\n  \"OtherLatitude\": 0,\n  \"AssistantPhone\": \"\",\n  \"IsEmailBounced\": false,\n  \"LastViewedDate\": \"\",\n  \"MailingCountry\": \"\",\n  \"MasterRecordId\": \"\",\n  \"OtherLongitude\": 0,\n  \"SystemModstamp\": \"\",\n  \"JigsawContactId\": \"\",\n  \"MailingLatitude\": 0,\n  \"OtherPostalCode\": \"\",\n  \"attributes__url\": \"\",\n  \"EmailBouncedDate\": \"\",\n  \"IsPriorityRecord\": false,\n  \"LastActivityDate\": \"\",\n  \"LastCUUpdateDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"MailingLongitude\": 0,\n  \"attributes__type\": \"\",\n  \"LastCURequestDate\": \"\",\n  \"MailingPostalCode\": \"\",\n  \"EmailBouncedReason\": \"\",\n  \"LastReferencedDate\": \"\",\n  \"OtherGeocodeAccuracy\": \"\",\n  \"MailingGeocodeAccuracy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "note"
          ]
        },
        "description": "Creates a new note attached to a salesforce record with the specified title and content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"title\": \"\",\n  \"owner_id\": \"\",\n  \"parent_id\": \"\",\n  \"is_private\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_note_record_with_content_type_header",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/note/record/with/content/type/header",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "note",
            "record",
            "with",
            "content",
            "type",
            "header"
          ]
        },
        "description": "Deprecated: creates a new note record in salesforce, associated with an existing salesforce object via `parentid`, automatically including a `content-type: application/json` header.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"Body\": \"\",\n  \"Title\": \"\",\n  \"OwnerId\": \"\",\n  \"ParentId\": \"\",\n  \"IsDeleted\": false,\n  \"IsPrivate\": false,\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"SystemModstamp\": \"\",\n  \"attributes__url\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"attributes__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_opportunity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/opportunity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "opportunity"
          ]
        },
        "description": "Creates a new opportunity in salesforce with the specified information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"amount\": 0,\n  \"next_step\": \"\",\n  \"account_id\": \"\",\n  \"close_date\": \"\",\n  \"contact_id\": \"\",\n  \"stage_name\": \"\",\n  \"description\": \"\",\n  \"lead_source\": \"\",\n  \"probability\": 0,\n  \"pricebook2_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_opportunity_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/opportunity/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "opportunity",
            "record"
          ]
        },
        "description": "Deprecated: creates a new opportunity record in salesforce; `name`, `stagename`, and `closedate` are mandatory, and ensure any referenced ids (e.g., `accountid`, `campaignid`) are valid and correspond",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"Name\": \"\",\n  \"Type\": \"\",\n  \"IsWon\": false,\n  \"Amount\": 0,\n  \"Fiscal\": \"\",\n  \"OwnerId\": \"\",\n  \"IsClosed\": false,\n  \"NextStep\": \"\",\n  \"AccountId\": \"\",\n  \"CloseDate\": \"\",\n  \"ContactId\": \"\",\n  \"IsDeleted\": false,\n  \"IsPrivate\": false,\n  \"PushCount\": 0,\n  \"StageName\": \"\",\n  \"CampaignId\": \"\",\n  \"FiscalYear\": 0,\n  \"LeadSource\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"Probability\": 0,\n  \"Pricebook2Id\": \"\",\n  \"FiscalQuarter\": 0,\n  \"HasOverdueTask\": false,\n  \"LastViewedDate\": \"\",\n  \"OrderNumber__c\": \"\",\n  \"SystemModstamp\": \"\",\n  \"ExpectedRevenue\": 0,\n  \"HasOpenActivity\": false,\n  \"attributes__url\": \"\",\n  \"ForecastCategory\": \"\",\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"attributes__type\": \"\",\n  \"TrackingNumber__c\": \"\",\n  \"LastReferencedDate\": \"\",\n  \"MainCompetitors__c\": \"\",\n  \"LastStageChangeDate\": \"\",\n  \"CurrentGenerators__c\": \"\",\n  \"ForecastCategoryName\": \"\",\n  \"HasOpportunityLineItem\": false,\n  \"TotalOpportunityQuantity\": 0,\n  \"LastAmountChangedHistoryId\": \"\",\n  \"DeliveryInstallationStatus__c\": \"\",\n  \"LastCloseDateChangedHistoryId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Creates a new task in salesforce to track activities, to-dos, and follow-ups related to contacts, leads, or other records.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"who_id\": \"\",\n  \"subject\": \"\",\n  \"what_id\": \"\",\n  \"owner_id\": \"\",\n  \"priority\": \"\",\n  \"description\": \"\",\n  \"activity_date\": \"\",\n  \"is_reminder_set\": false,\n  \"reminder_date_time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_a_lead_object_by_its_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/lead/object/by/its/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "lead",
            "object",
            "by",
            "its",
            "id"
          ]
        },
        "description": "Deprecated: permanently deletes an existing lead object from salesforce using its unique id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "account"
          ]
        },
        "description": "Permanently deletes an account from salesforce. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "campaign"
          ]
        },
        "description": "Permanently deletes a campaign from salesforce. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact"
          ]
        },
        "description": "Permanently deletes a contact from salesforce. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "lead"
          ]
        },
        "description": "Permanently deletes a lead from salesforce. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "note"
          ]
        },
        "description": "Permanently deletes a note from salesforce. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_delete_opportunity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/opportunity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "opportunity"
          ]
        },
        "description": "Permanently deletes an opportunity from salesforce. this action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"opportunity_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_execute_soql_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/execute/soql/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "execute",
            "soql",
            "query"
          ]
        },
        "description": "Deprecated: executes the provided soql query against salesforce; the query must begin with 'select'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"soql_query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_fetch_account_by_id_with_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/account/by/id/with/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "account",
            "by",
            "id",
            "with",
            "query"
          ]
        },
        "description": "Deprecated: use this action to retrieve a salesforce account by its unique id, which must be a valid and existing salesforce account id; you can optionally specify a comma-delimited list of fields to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_fetch_modified_or_unmodified_sobjects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/modified/or/unmodified/sobjects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "modified",
            "or",
            "unmodified",
            "sobjects"
          ]
        },
        "description": "Deprecated: fetches sobjects from `/sobjects` based on caller-set 'if-modified-since' (returns objects modified after a date, or 304 status if none) or 'if-unmodified-since' (returns objects if unmodi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"If-Modified-Since\": \"\",\n  \"If-Unmodified-Since\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Retrieves a specific account by id from salesforce, returning all available fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign"
          ]
        },
        "description": "Retrieves a specific campaign by id from salesforce, returning all available fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact"
          ]
        },
        "description": "Retrieves a specific contact by id from salesforce, returning all available fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dashboard"
          ]
        },
        "description": "Gets detailed metadata for a specific dashboard including its components, layout, and filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dashboard_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lead"
          ]
        },
        "description": "Retrieves a specific lead by id from salesforce, returning all available fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "note"
          ]
        },
        "description": "Retrieves a specific note by id from salesforce, returning all available fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_note_by_id_with_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/note/by/id/with/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "note",
            "by",
            "id",
            "with",
            "fields"
          ]
        },
        "description": "Deprecated: retrieves a salesforce note object by its id, optionally specifying which fields to return; the note id must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_opportunity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/opportunity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "opportunity"
          ]
        },
        "description": "Retrieves a specific opportunity by id from salesforce, returning all available fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"opportunity_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report"
          ]
        },
        "description": "Gets detailed metadata for a specific report including its structure, columns, filters, and groupings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"report_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_report_instance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/instance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "instance"
          ]
        },
        "description": "Gets the results of a report instance created by running a report. check status to see if report has completed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"report_id\": \"\",\n  \"instance_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_get_user_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "info"
          ]
        },
        "description": "Retrieves information about the current user or a specific user in salesforce.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"include_permissions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Lists accounts from salesforce using soql query, allowing flexible filtering, sorting, and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "campaigns"
          ]
        },
        "description": "Lists campaigns from salesforce using soql query, allowing flexible filtering, sorting, and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "Lists contacts from salesforce using soql query, allowing flexible filtering, sorting, and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_dashboards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/dashboards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "dashboards"
          ]
        },
        "description": "Lists all dashboards available in salesforce with basic metadata including name, id, and urls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_email_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "templates"
          ]
        },
        "description": "Lists available email templates in salesforce with filtering and search capabilities.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order_by\": \"\",\n  \"folder_name\": \"\",\n  \"search_term\": \"\",\n  \"include_body\": false,\n  \"template_type\": \"\",\n  \"is_active_only\": false,\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "leads"
          ]
        },
        "description": "Lists leads from salesforce using soql query, allowing flexible filtering, sorting, and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_notes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/notes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "notes"
          ]
        },
        "description": "Lists notes from salesforce using soql query, allowing flexible filtering, sorting, and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_opportunities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/opportunities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "opportunities"
          ]
        },
        "description": "Lists opportunities from salesforce using soql query, allowing flexible filtering, sorting, and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_list_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reports"
          ]
        },
        "description": "Lists all reports available in salesforce with basic metadata including name, id, and urls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_log_call",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/log/call",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "log",
            "call"
          ]
        },
        "description": "Logs a completed phone call as a task in salesforce with call-specific details like duration, type, and disposition.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"who_id\": \"\",\n  \"subject\": \"\",\n  \"what_id\": \"\",\n  \"comments\": \"\",\n  \"call_date\": \"\",\n  \"call_type\": \"\",\n  \"call_disposition\": \"\",\n  \"call_duration_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_log_email_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/log/email/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "log",
            "email",
            "activity"
          ]
        },
        "description": "Creates an emailmessage record to log email activity in salesforce, associating it with related records.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"subject\": \"\",\n  \"html_body\": \"\",\n  \"parent_id\": \"\",\n  \"text_body\": \"\",\n  \"cc_address\": \"\",\n  \"to_address\": \"\",\n  \"bcc_address\": \"\",\n  \"is_incoming\": false,\n  \"from_address\": \"\",\n  \"message_date\": \"\",\n  \"related_to_id\": \"\",\n  \"is_client_managed\": false,\n  \"is_externally_visible\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_mass_transfer_ownership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mass/transfer/ownership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mass",
            "transfer",
            "ownership"
          ]
        },
        "description": "Transfers ownership of multiple records to a new owner in a single operation using salesforce's composite api for better performance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"record_ids\": \"\",\n  \"object_type\": \"\",\n  \"new_owner_id\": \"\",\n  \"send_notification_email\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_query_contacts_by_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/contacts/by/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "contacts",
            "by",
            "name"
          ]
        },
        "description": "Deprecated: finds salesforce contact records by name using a case-insensitive search.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"contact_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_query_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "report"
          ]
        },
        "description": "Deprecated: executes a salesforce report synchronously by its `id` and `reporttype`, optionally with dynamic ad-hoc adjustments like filters or groupings, and returns its data without modifying the sa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"chart\": \"\",\n  \"scope\": \"\",\n  \"sortBy\": \"\",\n  \"buckets\": \"\",\n  \"topRows\": {},\n  \"currency\": \"\",\n  \"division\": \"\",\n  \"folderId\": \"\",\n  \"aggregates\": \"\",\n  \"reportType\": {},\n  \"crossFilters\": \"\",\n  \"reportFormat\": \"\",\n  \"detailColumns\": \"\",\n  \"developerName\": \"\",\n  \"groupingsDown\": \"\",\n  \"hasDetailRows\": false,\n  \"reportFilters\": \"\",\n  \"showSubtotals\": false,\n  \"hasRecordCount\": false,\n  \"showGrandTotal\": false,\n  \"groupingsAcross\": \"\",\n  \"standardFilters\": \"\",\n  \"standardDateFilter\": {},\n  \"customDetailFormula\": \"\",\n  \"presentationOptions\": {},\n  \"reportBooleanFilter\": \"\",\n  \"customSummaryFormula\": \"\",\n  \"historicalSnapshotDates\": \"\",\n  \"userOrHierarchyFilterId\": \"\",\n  \"allowedInCustomDetailFormula\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_remove_a_specific_contact_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/a/specific/contact/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "a",
            "specific",
            "contact",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: permanently deletes a specific contact from salesforce using its unique id, which must correspond to an existing record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_remove_account_by_unique_identifier",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/account/by/unique/identifier",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "account",
            "by",
            "unique",
            "identifier"
          ]
        },
        "description": "Deprecated: deletes an existing salesforce account using its unique id, returning an empty response on success (http 204).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_remove_campaign_object_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/campaign/object/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "campaign",
            "object",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: permanently deletes a specific campaign sobject in salesforce using its unique id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_remove_from_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/from/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "from",
            "campaign"
          ]
        },
        "description": "Removes a lead or contact from a campaign by deleting the campaignmember record. provide either the member id (lead/contact id) or the specific campaign member id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"campaign_id\": \"\",\n  \"campaign_member_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_remove_note_object_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/note/object/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "note",
            "object",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: permanently deletes an existing salesforce note object identified by its unique id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_remove_opportunity_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/opportunity/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "opportunity",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: permanently deletes an existing salesforce opportunity by its id; if the opportunity does not exist, a 'not found' (404) error occurs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_account_data_and_error_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/account/data/and/error/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "account",
            "data",
            "and",
            "error",
            "responses"
          ]
        },
        "description": "Deprecated: retrieves comprehensive metadata for the salesforce account sobject, detailing its properties, recent records, and related resource urls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_campaign_data_with_error_handling",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/campaign/data/with/error/handling",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "campaign",
            "data",
            "with",
            "error",
            "handling"
          ]
        },
        "description": "Deprecated: retrieves comprehensive information and metadata for the salesforce campaign sobject, provided it is enabled and accessible in the organization, and features robust error handling.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_contact_info_with_standard_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/contact/info/with/standard/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "contact",
            "info",
            "with",
            "standard",
            "responses"
          ]
        },
        "description": "Deprecated: retrieves comprehensive metadata (e.g., fields, data types, picklist values) for the salesforce contact sobject; this action does not retrieve individual contact records.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_lead_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/lead/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "lead",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: retrieves details for a salesforce lead by its id; the specified lead id must exist in salesforce.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_lead_data_with_various_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/lead/data/with/various/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "lead",
            "data",
            "with",
            "various",
            "responses"
          ]
        },
        "description": "Deprecated: retrieves lead sobject data from salesforce, such as recently viewed leads or general lead object information.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_note_object_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/note/object/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "note",
            "object",
            "information"
          ]
        },
        "description": "Deprecated: retrieves comprehensive metadata for the salesforce 'note' sobject, if it is enabled and accessible, to understand its structure and capabilities.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_opportunities_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/opportunities/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "opportunities",
            "data"
          ]
        },
        "description": "Deprecated: retrieves all available opportunity records, representing potential revenue-generating deals, from salesforce.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_opportunity_by_id_with_optional_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/opportunity/by/id/with/optional/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "opportunity",
            "by",
            "id",
            "with",
            "optional",
            "fields"
          ]
        },
        "description": "Deprecated: retrieves a salesforce opportunity by its id; the opportunity id must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_specific_campaign_object_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/specific/campaign/object/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "specific",
            "campaign",
            "object",
            "details"
          ]
        },
        "description": "Deprecated: retrieves details for a specific salesforce campaign object by its id, optionally limiting to specified fields; the campaign object must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_retrieve_specific_contact_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/specific/contact/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "specific",
            "contact",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: retrieves a salesforce contact by its unique id; the id must correspond to an existing contact record in salesforce.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_run_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/run/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "run",
            "report"
          ]
        },
        "description": "Runs a report and returns the results. creates a report instance that can be checked for completion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"report_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_run_soql_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/run/soql/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "run",
            "soql",
            "query"
          ]
        },
        "description": "Executes a soql query against salesforce data. returns records matching the query with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "accounts"
          ]
        },
        "description": "Search for salesforce accounts using multiple criteria like name, industry, type, location, or contact information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"phone\": \"\",\n  \"fields\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"billing_city\": \"\",\n  \"billing_state\": \"\",\n  \"billing_country\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "campaigns"
          ]
        },
        "description": "Search for salesforce campaigns using multiple criteria like name, type, status, date range, or active status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"status\": \"\",\n  \"is_active\": false,\n  \"start_date_to\": \"\",\n  \"start_date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "contacts"
          ]
        },
        "description": "Search for salesforce contacts using multiple criteria like name, email, phone, account, or title.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"limit\": 0,\n  \"phone\": \"\",\n  \"title\": \"\",\n  \"fields\": \"\",\n  \"account_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "leads"
          ]
        },
        "description": "Search for salesforce leads using multiple criteria like name, email, phone, company, title, status, or lead source.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"limit\": 0,\n  \"phone\": \"\",\n  \"title\": \"\",\n  \"fields\": \"\",\n  \"status\": \"\",\n  \"company\": \"\",\n  \"lead_source\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_notes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/notes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "notes"
          ]
        },
        "description": "Search for salesforce notes using multiple criteria like title, body content, parent record, owner, or creation date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"limit\": 0,\n  \"title\": \"\",\n  \"fields\": \"\",\n  \"is_private\": false,\n  \"owner_name\": \"\",\n  \"parent_name\": \"\",\n  \"created_date_to\": \"\",\n  \"created_date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_opportunities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/opportunities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "opportunities"
          ]
        },
        "description": "Search for salesforce opportunities using multiple criteria like name, account, stage, amount, close date, or status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"is_won\": false,\n  \"is_closed\": false,\n  \"amount_max\": 0,\n  \"amount_min\": 0,\n  \"stage_name\": \"\",\n  \"lead_source\": \"\",\n  \"account_name\": \"\",\n  \"close_date_to\": \"\",\n  \"close_date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_search_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "tasks"
          ]
        },
        "description": "Search for salesforce tasks using multiple criteria like subject, status, priority, assigned user, related records, or dates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"status\": \"\",\n  \"subject\": \"\",\n  \"priority\": \"\",\n  \"is_closed\": false,\n  \"account_name\": \"\",\n  \"contact_name\": \"\",\n  \"activity_date_to\": \"\",\n  \"assigned_to_name\": \"\",\n  \"activity_date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_send_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "email"
          ]
        },
        "description": "Sends an email through salesforce with options for recipients, attachments, and activity logging.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"is_html\": false,\n  \"subject\": \"\",\n  \"log_email\": false,\n  \"sender_type\": \"\",\n  \"cc_addresses\": \"\",\n  \"recipient_id\": \"\",\n  \"to_addresses\": \"\",\n  \"bcc_addresses\": \"\",\n  \"attachment_ids\": \"\",\n  \"sender_address\": \"\",\n  \"related_record_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_send_email_from_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/email/from/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "email",
            "from",
            "template"
          ]
        },
        "description": "Sends an email using a predefined salesforce email template with merge field support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"log_email\": false,\n  \"sender_type\": \"\",\n  \"template_id\": \"\",\n  \"cc_addresses\": \"\",\n  \"recipient_id\": \"\",\n  \"bcc_addresses\": \"\",\n  \"attachment_ids\": \"\",\n  \"sender_address\": \"\",\n  \"related_record_id\": \"\",\n  \"add_threading_tokens\": false,\n  \"additional_to_addresses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_send_mass_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/mass/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "mass",
            "email"
          ]
        },
        "description": "Sends bulk emails to multiple recipients, either using a template or custom content. processes in batches for better performance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"is_html\": false,\n  \"subject\": \"\",\n  \"batch_size\": 0,\n  \"log_emails\": false,\n  \"sender_type\": \"\",\n  \"template_id\": \"\",\n  \"recipient_ids\": \"\",\n  \"sender_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account"
          ]
        },
        "description": "Updates an existing account in salesforce with the specified changes. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fax\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"phone\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"sic_desc\": \"\",\n  \"parent_id\": \"\",\n  \"account_id\": \"\",\n  \"description\": \"\",\n  \"billing_city\": \"\",\n  \"billing_state\": \"\",\n  \"shipping_city\": \"\",\n  \"account_source\": \"\",\n  \"annual_revenue\": 0,\n  \"billing_street\": \"\",\n  \"shipping_state\": \"\",\n  \"billing_country\": \"\",\n  \"shipping_street\": \"\",\n  \"shipping_country\": \"\",\n  \"billing_postal_code\": \"\",\n  \"number_of_employees\": 0,\n  \"shipping_postal_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_account_object_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/object/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "object",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: updates specified fields of an existing salesforce account object identified by its unique id; field names are case-sensitive and read-only fields are ignored.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"id\": \"\",\n  \"Fax\": \"\",\n  \"Sic\": \"\",\n  \"Name\": \"\",\n  \"Site\": \"\",\n  \"Type\": \"\",\n  \"Phone\": \"\",\n  \"Jigsaw\": \"\",\n  \"Rating\": \"\",\n  \"SLA__c\": \"\",\n  \"OwnerId\": \"\",\n  \"SicDesc\": \"\",\n  \"Website\": \"\",\n  \"Industry\": \"\",\n  \"ParentId\": \"\",\n  \"PhotoUrl\": \"\",\n  \"Active__c\": \"\",\n  \"IsDeleted\": false,\n  \"NaicsCode\": \"\",\n  \"NaicsDesc\": \"\",\n  \"Ownership\": \"\",\n  \"DunsNumber\": \"\",\n  \"Tradestyle\": \"\",\n  \"BillingCity\": \"\",\n  \"CleanStatus\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"YearStarted\": \"\",\n  \"BillingState\": \"\",\n  \"ShippingCity\": \"\",\n  \"TickerSymbol\": \"\",\n  \"AccountNumber\": \"\",\n  \"AccountSource\": \"\",\n  \"AnnualRevenue\": 0,\n  \"BillingStreet\": \"\",\n  \"ShippingState\": \"\",\n  \"BillingCountry\": \"\",\n  \"DandbCompanyId\": \"\",\n  \"LastViewedDate\": \"\",\n  \"MasterRecordId\": \"\",\n  \"ShippingStreet\": \"\",\n  \"SystemModstamp\": \"\",\n  \"BillingLatitude\": 0,\n  \"JigsawCompanyId\": \"\",\n  \"ShippingCountry\": \"\",\n  \"attributes__url\": \"\",\n  \"BillingLongitude\": 0,\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"OperatingHoursId\": \"\",\n  \"ShippingLatitude\": 0,\n  \"attributes__type\": \"\",\n  \"BillingPostalCode\": \"\",\n  \"NumberOfEmployees\": 0,\n  \"ShippingLongitude\": 0,\n  \"LastReferencedDate\": \"\",\n  \"SLASerialNumber__c\": \"\",\n  \"ShippingPostalCode\": \"\",\n  \"CustomerPriority__c\": \"\",\n  \"NumberofLocations__c\": 0,\n  \"SLAExpirationDate__c\": \"\",\n  \"UpsellOpportunity__c\": \"\",\n  \"BillingGeocodeAccuracy\": \"\",\n  \"ShippingGeocodeAccuracy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "campaign"
          ]
        },
        "description": "Updates an existing campaign in salesforce with the specified changes. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"status\": \"\",\n  \"end_date\": \"\",\n  \"is_active\": false,\n  \"parent_id\": \"\",\n  \"start_date\": \"\",\n  \"actual_cost\": 0,\n  \"campaign_id\": \"\",\n  \"description\": \"\",\n  \"number_sent\": 0,\n  \"budgeted_cost\": 0,\n  \"expected_revenue\": 0,\n  \"expected_response\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_campaign_by_id_with_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/campaign/by/id/with/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "campaign",
            "by",
            "id",
            "with",
            "json"
          ]
        },
        "description": "Deprecated: updates specific fields of an existing campaign in salesforce, identified by its unique `id`, which must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"id\": \"\",\n  \"Name\": \"\",\n  \"Type\": \"\",\n  \"Status\": \"\",\n  \"EndDate\": \"\",\n  \"OwnerId\": \"\",\n  \"IsActive\": false,\n  \"ParentId\": \"\",\n  \"IsDeleted\": false,\n  \"StartDate\": \"\",\n  \"ActualCost\": 0,\n  \"NumberSent\": 0,\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"BudgetedCost\": 0,\n  \"NumberOfLeads\": 0,\n  \"LastViewedDate\": \"\",\n  \"SystemModstamp\": \"\",\n  \"ExpectedRevenue\": 0,\n  \"attributes__url\": \"\",\n  \"ExpectedResponse\": 0,\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"NumberOfContacts\": 0,\n  \"attributes__type\": \"\",\n  \"NumberOfResponses\": 0,\n  \"LastReferencedDate\": \"\",\n  \"NumberOfOpportunities\": 0,\n  \"AmountAllOpportunities\": 0,\n  \"AmountWonOpportunities\": 0,\n  \"NumberOfConvertedLeads\": 0,\n  \"NumberOfWonOpportunities\": 0,\n  \"CampaignMemberRecordTypeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact"
          ]
        },
        "description": "Updates an existing contact in salesforce with the specified changes. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"title\": \"\",\n  \"birthdate\": \"\",\n  \"last_name\": \"\",\n  \"account_id\": \"\",\n  \"contact_id\": \"\",\n  \"department\": \"\",\n  \"first_name\": \"\",\n  \"description\": \"\",\n  \"mailing_city\": \"\",\n  \"mobile_phone\": \"\",\n  \"mailing_state\": \"\",\n  \"mailing_street\": \"\",\n  \"mailing_country\": \"\",\n  \"mailing_postal_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_contact_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: updates specified fields of an existing salesforce contact by its id; at least one field must be provided for modification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"id\": \"\",\n  \"Fax\": \"\",\n  \"Name\": \"\",\n  \"Email\": \"\",\n  \"Phone\": \"\",\n  \"Title\": \"\",\n  \"Jigsaw\": \"\",\n  \"OwnerId\": \"\",\n  \"LastName\": \"\",\n  \"Level__c\": \"\",\n  \"PhotoUrl\": \"\",\n  \"AccountId\": \"\",\n  \"Birthdate\": \"\",\n  \"FirstName\": \"\",\n  \"HomePhone\": \"\",\n  \"IsDeleted\": false,\n  \"OtherCity\": \"\",\n  \"Department\": \"\",\n  \"LeadSource\": \"\",\n  \"OtherPhone\": \"\",\n  \"OtherState\": \"\",\n  \"Salutation\": \"\",\n  \"CleanStatus\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"MailingCity\": \"\",\n  \"MobilePhone\": \"\",\n  \"OtherStreet\": \"\",\n  \"ReportsToId\": \"\",\n  \"IndividualId\": \"\",\n  \"Languages__c\": \"\",\n  \"MailingState\": \"\",\n  \"OtherCountry\": \"\",\n  \"AssistantName\": \"\",\n  \"ContactSource\": \"\",\n  \"MailingStreet\": \"\",\n  \"OtherLatitude\": 0,\n  \"AssistantPhone\": \"\",\n  \"IsEmailBounced\": false,\n  \"LastViewedDate\": \"\",\n  \"MailingCountry\": \"\",\n  \"MasterRecordId\": \"\",\n  \"OtherLongitude\": 0,\n  \"SystemModstamp\": \"\",\n  \"JigsawContactId\": \"\",\n  \"MailingLatitude\": 0,\n  \"OtherPostalCode\": \"\",\n  \"attributes__url\": \"\",\n  \"EmailBouncedDate\": \"\",\n  \"IsPriorityRecord\": false,\n  \"LastActivityDate\": \"\",\n  \"LastCUUpdateDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"MailingLongitude\": 0,\n  \"attributes__type\": \"\",\n  \"LastCURequestDate\": \"\",\n  \"MailingPostalCode\": \"\",\n  \"EmailBouncedReason\": \"\",\n  \"LastReferencedDate\": \"\",\n  \"OtherGeocodeAccuracy\": \"\",\n  \"MailingGeocodeAccuracy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lead"
          ]
        },
        "description": "Updates an existing lead in salesforce with the specified changes. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"title\": \"\",\n  \"rating\": \"\",\n  \"status\": \"\",\n  \"street\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"lead_id\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"description\": \"\",\n  \"lead_source\": \"\",\n  \"postal_code\": \"\",\n  \"annual_revenue\": 0,\n  \"number_of_employees\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_lead_by_id_with_json_payload",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lead/by/id/with/json/payload",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lead",
            "by",
            "id",
            "with",
            "json",
            "payload"
          ]
        },
        "description": "Deprecated: updates specified fields of an existing lead in salesforce via its unique id (path parameter), returning http 204 on success or error details on failure; request body must contain at least",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"id\": \"\",\n  \"Fax\": \"\",\n  \"City\": \"\",\n  \"Name\": \"\",\n  \"Email\": \"\",\n  \"Phone\": \"\",\n  \"State\": \"\",\n  \"Title\": \"\",\n  \"Jigsaw\": \"\",\n  \"Rating\": \"\",\n  \"Status\": \"\",\n  \"Street\": \"\",\n  \"Company\": \"\",\n  \"Country\": \"\",\n  \"OwnerId\": \"\",\n  \"Website\": \"\",\n  \"Industry\": \"\",\n  \"LastName\": \"\",\n  \"Latitude\": 0,\n  \"PhotoUrl\": \"\",\n  \"FirstName\": \"\",\n  \"IsDeleted\": false,\n  \"Longitude\": 0,\n  \"LeadSource\": \"\",\n  \"PostalCode\": \"\",\n  \"Primary__c\": \"\",\n  \"SICCode__c\": \"\",\n  \"Salutation\": \"\",\n  \"CleanStatus\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"IsConverted\": false,\n  \"MobilePhone\": \"\",\n  \"IndividualId\": \"\",\n  \"AnnualRevenue\": 0,\n  \"ConvertedDate\": \"\",\n  \"DandbCompanyId\": \"\",\n  \"LastViewedDate\": \"\",\n  \"MasterRecordId\": \"\",\n  \"SystemModstamp\": \"\",\n  \"GeocodeAccuracy\": \"\",\n  \"IsUnreadByOwner\": false,\n  \"JigsawContactId\": \"\",\n  \"attributes__url\": \"\",\n  \"EmailBouncedDate\": \"\",\n  \"IsPriorityRecord\": false,\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"attributes__type\": \"\",\n  \"CompanyDunsNumber\": \"\",\n  \"NumberOfEmployees\": 0,\n  \"ConvertedAccountId\": \"\",\n  \"ConvertedContactId\": \"\",\n  \"EmailBouncedReason\": \"\",\n  \"LastReferencedDate\": \"\",\n  \"ProductInterest__c\": \"\",\n  \"CurrentGenerators__c\": \"\",\n  \"NumberofLocations__c\": 0,\n  \"ConvertedOpportunityId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "note"
          ]
        },
        "description": "Updates an existing note in salesforce with the specified changes. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"title\": \"\",\n  \"note_id\": \"\",\n  \"owner_id\": \"\",\n  \"is_private\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_opportunity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/opportunity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "opportunity"
          ]
        },
        "description": "Updates an existing opportunity in salesforce with the specified changes. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"amount\": 0,\n  \"next_step\": \"\",\n  \"account_id\": \"\",\n  \"close_date\": \"\",\n  \"contact_id\": \"\",\n  \"stage_name\": \"\",\n  \"description\": \"\",\n  \"lead_source\": \"\",\n  \"probability\": 0,\n  \"opportunity_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_opportunity_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/opportunity/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "opportunity",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: updates specified fields of an existing salesforce opportunity by its id; the opportunity must exist, and some fields (like name, stagename, closedate) may have specific salesforce validat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"id\": \"\",\n  \"Name\": \"\",\n  \"Type\": \"\",\n  \"IsWon\": false,\n  \"Amount\": 0,\n  \"Fiscal\": \"\",\n  \"OwnerId\": \"\",\n  \"IsClosed\": false,\n  \"NextStep\": \"\",\n  \"AccountId\": \"\",\n  \"CloseDate\": \"\",\n  \"ContactId\": \"\",\n  \"IsDeleted\": false,\n  \"IsPrivate\": false,\n  \"PushCount\": 0,\n  \"StageName\": \"\",\n  \"CampaignId\": \"\",\n  \"FiscalYear\": 0,\n  \"LeadSource\": \"\",\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"Description\": \"\",\n  \"Probability\": 0,\n  \"Pricebook2Id\": \"\",\n  \"FiscalQuarter\": 0,\n  \"HasOverdueTask\": false,\n  \"LastViewedDate\": \"\",\n  \"OrderNumber__c\": \"\",\n  \"SystemModstamp\": \"\",\n  \"ExpectedRevenue\": 0,\n  \"HasOpenActivity\": false,\n  \"attributes__url\": \"\",\n  \"ForecastCategory\": \"\",\n  \"LastActivityDate\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"attributes__type\": \"\",\n  \"TrackingNumber__c\": \"\",\n  \"LastReferencedDate\": \"\",\n  \"MainCompetitors__c\": \"\",\n  \"LastStageChangeDate\": \"\",\n  \"CurrentGenerators__c\": \"\",\n  \"ForecastCategoryName\": \"\",\n  \"HasOpportunityLineItem\": false,\n  \"TotalOpportunityQuantity\": 0,\n  \"LastAmountChangedHistoryId\": \"\",\n  \"DeliveryInstallationStatus__c\": \"\",\n  \"LastCloseDateChangedHistoryId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_specific_note_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/specific/note/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "specific",
            "note",
            "by",
            "id"
          ]
        },
        "description": "Deprecated: use `update specific note by id` instead. updates specified fields of an existing salesforce note sobject identified by its id; the note must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"Id\": \"\",\n  \"id\": \"\",\n  \"Body\": \"\",\n  \"Title\": \"\",\n  \"OwnerId\": \"\",\n  \"ParentId\": \"\",\n  \"IsDeleted\": false,\n  \"IsPrivate\": false,\n  \"CreatedById\": \"\",\n  \"CreatedDate\": \"\",\n  \"SystemModstamp\": \"\",\n  \"attributes__url\": \"\",\n  \"LastModifiedById\": \"\",\n  \"LastModifiedDate\": \"\",\n  \"attributes__type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "salesforce_update_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task"
          ]
        },
        "description": "Updates an existing task in salesforce with new information. only provided fields will be updated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"who_id\": \"\",\n  \"subject\": \"\",\n  \"task_id\": \"\",\n  \"what_id\": \"\",\n  \"priority\": \"\",\n  \"description\": \"\",\n  \"activity_date\": \"\",\n  \"is_reminder_set\": false,\n  \"reminder_date_time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}