describe_sobject | Full metadata for one sObject: every field with its API name, type, whether it is required, picklist values, and relationships. Use it before writing to know the exact field names. |
get_limits | Read the org limits and how much of each is consumed (daily API requests, storage, bulk jobs…). |
get_record | Fetch one record by its Salesforce id. Without fields, every accessible field is returned. |
get_record_by_external_id | Fetch one record by the value of an external-id field, when you hold the id from your own system rather than the Salesforce one. |
get_sobject_info | Basic metadata for one sObject plus the recently-used records of that type — lighter than a full describe. |
list_api_versions | List the REST API versions this org serves (label, version, url). This connector calls v62.0; use it to check what the org supports. |
list_deleted | List the ids of records of one type deleted between two instants (max 30 days apart), with their deletion date. |
list_recent | List the records the connected user viewed most recently (id, name, type). |
list_sobjects | List every sObject available in the org with its API name, label and capabilities (createable, queryable, custom…). Start here to discover object names. |
list_updated | List the ids of records of one type created or updated between two instants (max 30 days apart) — for incremental syncs. |
query | Run a SOQL query. Examples: “SELECT Id, Name, Industry FROM Account WHERE Industry = ‘Energy’ ORDER BY Name LIMIT 50” — “SELECT Id, Name, Amount, StageName, CloseDate FROM Opportunity WHERE CloseDate = THIS_QUARTER AND IsClosed = false”. Returns records plus, when the result is truncated, a nextRecordsUrl to pass to query_more. |
query_all | Run a SOQL query that ALSO returns deleted and archived records (IsDeleted = true rows in the Recycle Bin, archived Tasks and Events). Same syntax and same pagination as query. |
query_more | Fetch the next page of a query / query_all result. Pass the nextRecordsUrl exactly as the previous response returned it — any other value is refused. |
search | Run a SOSL full-text search across several objects at once. Examples: “FIND {Acme} IN ALL FIELDS RETURNING Account(Id, Name), Contact(Id, Name, Email)” — “FIND {jane@example.com} IN EMAIL FIELDS RETURNING Contact(Id, Name), Lead(Id, Name)”. |