CData Cloud offers access to Salesforce across several standard services and protocols, in a cloud-hosted solution. Any application that can connect to a MySQL or SQL Server database can connect to Salesforce through CData Cloud.
CData Cloud allows you to standardize and configure connections to Salesforce as though it were any other OData endpoint, or standard SQL Server/MySQL database.
This page provides a guide to Establishing a Connection to Salesforce in CData Cloud, as well as information on the available resources, and a reference to the available connection properties.
Establishing a Connection shows how to authenticate to Salesforce and configure any necessary connection properties to create a database in CData Cloud
Accessing data from Salesforce through the available standard services and CData Cloud administration is documented in further details in the CData Cloud Documentation.
Connect to Salesforce by selecting the corresponding icon in the Database tab. Required properties are listed under Settings. The Advanced tab lists connection properties that are not typically required.
By default, the Cloud connects to production environments. Set UseSandbox to true to use a Salesforce sandbox account. If you are using user/password authentication, ensure that you specify a sandbox username in User.
Set the AuthScheme to Basic and set the User and Password to your login credentials. Additionally, set the SecurityToken. By default, the SecurityToken is required, but you can make it optional by configuring a range of trusted IP addresses in Salesforce.
To disable the security token:
To obtain the security token:
AuthScheme must be set to OAuth in all user account flows.
Follow these steps to set up the Password Grant option:
Note: If you have enabled Session Settings > Lock sessions to the IP address from which they originated, make sure that your IP address does not change while using the Cloud. If the IP changes during the usage of the Cloud, an "INVALID_SESSION_ID" error is returned from Salesforce and the Cloud will no longer be able to retrieve data. If you receive this error, ask your Salesforce administrator to disable this configuration or make sure to configure a static IP for the instance where you are using the Cloud. Then, reset the connection to continue using the Cloud.
Set the AuthScheme to OAuthJWT.
To obtain the OAuthJWT consumer key:
http://localhost:8019/src/oauthCallback.rst
After creating your OAuth Application, set the following connection properties:
Note: This flow never issues a refresh token.
Set the AuthScheme to AzureAD. Use the following connection properties to connect to AzureAD:
Note that this configuration requires two AAD applications: the "Salesforce" application used for single sign-on, and a separate "connector" application with user_impersonation permission on the "Salesforce" application. You must also specify the OAuth connection properties:
Use the following SSOProperties to authenticate to AzureAD:
The following is an example connection string:
AuthScheme=AzureAD;InitiateOAuth=GETANDREFRESH;OAuthClientId=3ea1c786-d527-4399-8c3b-2e3696ae4b48;OauthClientSecret=xxx;SSOProperties='Resource=https://example.my.salesforce.com;AzureTenant=6ee709df-9de0-4cdf-10e6b7a51d95';
Set the AuthScheme to Okta. Use the following connection properties to connect to Okta:
The following is an example connection string:
AuthScheme=PingFederate;User=PingFederateUserName;Password=PingFederatePassword;URL='http://sharepointserver/mysite';
Set the AuthScheme to OneLogin. Use the following connection properties to connect to OneLogin:
The following is an example connection string:
AuthScheme=OneLogin;User=OneLoginUserName;Password=OneLoginPassword;SSOProperties='OAuthClientID=3fc8394584f153ce3b7924d9cd4f686443a52b;OAuthClientSecret=ca9257fd5cc3277abb5818cea28c06fe9b3b285d73d06;Subdomain=OneLoginSubDomain;AppId=1433920';
Set the AuthScheme to PingFederate. The following connection properties need to be set:
AuthScheme=PingFederate;User=pingFederateUser;Password=pingFederatePassword;SSOLoginURL='https://<authority>/idp/sts.wst';SSOExchangeUrl='https://domain.my.salesforce.com/services/oauth2/token?so=00D3000006JDF';
Set the AuthScheme to ADFS. The following connection properties need to be set:
You need the following SSOProperties to authenticate to ADFS:
AuthScheme=ADFS;User=username;Password=password;SSOLoginURL='https://sts.company.com';SSOProperties='RelyingParty=https://saml.salesforce.com';
The ADFS Integrated flow indicates you are connecting with the currently logged in Windows user credentials. To use the ADFS Integrated flow, do not specify the User and Password, but otherwise follow the same steps in the ADFS guide above.
By default, the Cloud attempts to negotiate SSL/TLS by checking the server's certificate against the system's trusted certificate store.
To specify another certificate, see the SSLServerCert property for the available formats to do so.
To connect through the Windows system proxy, you do not need to set any additional connection properties. To connect to other proxies, set ProxyAutoDetect to false.
In addition, to authenticate to an HTTP proxy, set ProxyAuthScheme, ProxyUser, and ProxyPassword, in addition to ProxyServer and ProxyPort.
Set the following properties:
You can use the Cloud to work with all of the tables in your account. The Cloud connects to Salesforce and gets the list of tables and the metadata for the tables by calling the appropriate web services. Any changes you make to your Salesforce account, such as adding a new table, adding new columns, or changing the data type of a column, are immediately reflected when you connect using the Cloud.
The Cloud models the Salesforce API as relational Tables. The table definitions are dynamically retrieved; here, we show the sample table definitions that are included in the Salesforce.com development environment.
In addition to the tables, the Cloud also offers stored procedures and views, enabling you to work with other aspects of the Salesforce API, like bulk jobs, custom reports, and so on.
Stored Procedures are function-like interfaces to Salesforce. They can be used to search, update, and modify information in Salesforce.
Views offer additional metadata information from Salesforce.
Polymorphic Fields explains how to work with related objects as different types of objects.
The Cloud maps types from the data source to the corresponding data type available in the schema. The following table documents these mappings.
Salesforce UI | Salesforce API Type | CData Schema |
Auto Number | string | string |
Lookup Relationship | ID | string |
Master-Detail Relationship | ID | string |
External Lookup Relationship | ID | string |
Checkbox | boolean | bool |
Currency | double | float |
Date | date | date |
Date/Time | datetime | datetime |
string | string | |
Geolocation | Location* | string |
Number | double | float |
Percent | double | float |
Phone | string | string |
Picklist | string | string |
Picklist (Multi-Select) | string | string |
Text | string | string |
Text Area | string | string |
Text Area (Long) | string | string |
Text Area (Rich) | string | string |
Text (Encrypted) | string | string |
Time | time | time |
URL | string | string |
A polymorphic field is one where the related object might be one of several different types of objects. For example, the WhoID field of a Task can be a Contact or a Lead. To find out if a field is polymorphic, you can query the sys_tablecolumns and check the IsPolymorphic column. There are two pseudo columns related to each polymorphic field:
The pseudo columns are used to efficiently work with polymorphic fields.
SELECT * FROM Task WHERE OwnerIDType = 'User'For INSERT/UPDATE/UPSERT statements, the polymorphic fields can be used directly, or instead of having to look up the ID of a specific object type, the {PolymorphicField}ExternalID can be used. For example, when trying to update the WhoID of a task, instead of having to find the ID which belongs to a specific Contact, a contact external ID field can be used as a reference. Let's say the contact has an external ID "ContactEmail__c". Instead of using:
SELECT ID FROM Contact WHERE ContactEmail__c = '[email protected]' UPDATE Task SET WhoID = ID from first queryThe following can be executed:
UPDATE Task SET WhoID='[email protected]', WhoIDType='Contact', WhoIDExternalID = 'ContactEmail__c'This tells the service to set the WhoID value for this task to whichever contact ID has the external ID ContactEmail__c equals to [email protected]. The same applies to INSERT & UPSERT statements.
The Cloud models the data in Salesforce as a list of tables in a relational database that can be queried using standard SQL statements.
Name | Description |
AcceptedEventRelation | This is a table representing the AcceptedEventRelation entities in Salesforce. |
Account | This is a table representing the Account entities in Salesforce. |
AccountContactRole | This is a table representing the AccountContactRole entities in Salesforce. |
AccountFeed | This is a table representing the AccountFeed entities in Salesforce. |
AccountHistory | This is a table representing the AccountHistory entities in Salesforce. |
AccountPartner | This is a table representing the AccountPartner entities in Salesforce. |
AccountShare | This is a table representing the AccountShare entities in Salesforce. |
AdditionalNumber | This is a table representing the AdditionalNumber entities in Salesforce. |
ApexClass | This is a table representing the ApexClass entities in Salesforce. |
ApexComponent | This is a table representing the ApexComponent entities in Salesforce. |
ApexLog | This is a table representing the ApexLog entities in Salesforce. |
ApexPage | This is a table representing the ApexPage entities in Salesforce. |
ApexTestQueueItem | This is a table representing the ApexTestQueueItem entities in Salesforce. |
ApexTestResult | This is a table representing the ApexTestResult entities in Salesforce. |
ApexTrigger | This is a table representing the ApexTrigger entities in Salesforce. |
AppMenuItem | This is a table representing the AppMenuItem entities in Salesforce. |
Approval | This is a table representing the Approval entities in Salesforce. |
Asset | This is a table representing the Asset entities in Salesforce. |
AssetFeed | This is a table representing the AssetFeed entities in Salesforce. |
AssignmentRule | This is a table representing the AssignmentRule entities in Salesforce. |
AsyncApexJob | This is a table representing the AsyncApexJob entities in Salesforce. |
Attachment | This is a table representing the Attachment entities in Salesforce. |
AuthProvider | This is a table representing the AuthProvider entities in Salesforce. |
AuthSession | This is a table representing the AuthSession entities in Salesforce. |
BrandTemplate | This is a table representing the BrandTemplate entities in Salesforce. |
BusinessHours | This is a table representing the BusinessHours entities in Salesforce. |
BusinessProcess | This is a table representing the BusinessProcess entities in Salesforce. |
CallCenter | This is a table representing the CallCenter entities in Salesforce. |
Campaign | This is a table representing the Campaign entities in Salesforce. |
CampaignFeed | This is a table representing the CampaignFeed entities in Salesforce. |
CampaignMember | This is a table representing the CampaignMember entities in Salesforce. |
CampaignMemberStatus | This is a table representing the CampaignMemberStatus entities in Salesforce. |
CampaignShare | This is a table representing the CampaignShare entities in Salesforce. |
Case | This is a table representing the Case entities in Salesforce. |
CaseComment | This is a table representing the CaseComment entities in Salesforce. |
CaseContactRole | This is a table representing the CaseContactRole entities in Salesforce. |
CaseFeed | This is a table representing the CaseFeed entities in Salesforce. |
CaseHistory | This is a table representing the CaseHistory entities in Salesforce. |
CaseShare | This is a table representing the CaseShare entities in Salesforce. |
CaseSolution | This is a table representing the CaseSolution entities in Salesforce. |
CaseStatus | This is a table representing the CaseStatus entities in Salesforce. |
CaseTeamMember | This is a table representing the CaseTeamMember entities in Salesforce. |
CaseTeamRole | This is a table representing the CaseTeamRole entities in Salesforce. |
CaseTeamTemplate | This is a table representing the CaseTeamTemplate entities in Salesforce. |
CaseTeamTemplateMember | This is a table representing the CaseTeamTemplateMember entities in Salesforce. |
CaseTeamTemplateRecord | This is a table representing the CaseTeamTemplateRecord entities in Salesforce. |
CategoryData | This is a table representing the CategoryData entities in Salesforce. |
CategoryNode | This is a table representing the CategoryNode entities in Salesforce. |
ChatterActivity | This is a table representing the ChatterActivity entities in Salesforce. |
ClientBrowser | This is a table representing the ClientBrowser entities in Salesforce. |
CollaborationGroup | This is a table representing the CollaborationGroup entities in Salesforce. |
CollaborationGroupFeed | This is a table representing the CollaborationGroupFeed entities in Salesforce. |
CollaborationGroupMember | This is a table representing the CollaborationGroupMember entities in Salesforce. |
CollaborationGroupMemberRequest | This is a table representing the CollaborationGroupMemberRequest entities in Salesforce. |
CollaborationInvitation | This is a table representing the CollaborationInvitation entities in Salesforce. |
Community | This is a table representing the Community entities in Salesforce. |
Contact | This is a table representing the Contact entities in Salesforce. |
ContactFeed | This is a table representing the ContactFeed entities in Salesforce. |
ContactHistory | This is a table representing the ContactHistory entities in Salesforce. |
ContactShare | This is a table representing the ContactShare entities in Salesforce. |
ContentDocument | This is a table representing the ContentDocument entities in Salesforce. |
ContentDocumentFeed | This is a table representing the ContentDocumentFeed entities in Salesforce. |
ContentDocumentHistory | This is a table representing the ContentDocumentHistory entities in Salesforce. |
ContentDocumentLink | This is a table representing the ContentDocumentLink entities in Salesforce. |
ContentVersion | This is a table representing the ContentVersion entities in Salesforce. |
ContentVersionHistory | This is a table representing the ContentVersionHistory entities in Salesforce. |
Contract | This is a table representing the Contract entities in Salesforce. |
ContractContactRole | This is a table representing the ContractContactRole entities in Salesforce. |
ContractFeed | This is a table representing the ContractFeed entities in Salesforce. |
ContractHistory | This is a table representing the ContractHistory entities in Salesforce. |
ContractStatus | This is a table representing the ContractStatus entities in Salesforce. |
CronJobDetail | This is a table representing the CronJobDetail entities in Salesforce. |
CronTrigger | This is a table representing the CronTrigger entities in Salesforce. |
Dashboard | This is a table representing the Dashboard entities in Salesforce. |
DashboardComponent | This is a table representing the DashboardComponent entities in Salesforce. |
DashboardComponentFeed | This is a table representing the DashboardComponentFeed entities in Salesforce. |
DashboardFeed | This is a table representing the DashboardFeed entities in Salesforce. |
DeclinedEventRelation | This is a table representing the DeclinedEventRelation entities in Salesforce. |
Document | This is a table representing the Document entities in Salesforce. |
DocumentAttachmentMap | This is a table representing the DocumentAttachmentMap entities in Salesforce. |
Domain | This is a table representing the Domain entities in Salesforce. |
DomainSite | This is a table representing the DomainSite entities in Salesforce. |
EmailServicesAddress | This is a table representing the EmailServicesAddress entities in Salesforce. |
EmailServicesFunction | This is a table representing the EmailServicesFunction entities in Salesforce. |
EmailTemplate | This is a table representing the EmailTemplate entities in Salesforce. |
EntitySubscription | This is a table representing the EntitySubscription entities in Salesforce. |
Event | This is a table representing the Event entities in Salesforce. |
EventFeed | This is a table representing the EventFeed entities in Salesforce. |
EventRelation | This is a table representing the EventRelation entities in Salesforce. |
FeedComment | This is a table representing the FeedComment entities in Salesforce. |
FeedItem | This is a table representing the FeedItem entities in Salesforce. |
FeedPollChoice | This is a table representing the FeedPollChoice entities in Salesforce. |
FeedPollVote | This is a table representing the FeedPollVote entities in Salesforce. |
FieldPermissions | This is a table representing the FieldPermissions entities in Salesforce. |
FiscalYearSettings | This is a table representing the FiscalYearSettings entities in Salesforce. |
Folder | This is a table representing the Folder entities in Salesforce. |
ForecastShare | This is a table representing the ForecastShare entities in Salesforce. |
Group | This is a table representing the Group entities in Salesforce. |
GroupMember | This is a table representing the GroupMember entities in Salesforce. |
HashtagDefinition | This is a table representing the HashtagDefinition entities in Salesforce. |
Holiday | This is a table representing the Holiday entities in Salesforce. |
Lead | This is a table representing the Lead entities in Salesforce. |
LeadFeed | This is a table representing the LeadFeed entities in Salesforce. |
LeadHistory | This is a table representing the LeadHistory entities in Salesforce. |
LeadShare | This is a table representing the LeadShare entities in Salesforce. |
LeadStatus | This is a table representing the LeadStatus entities in Salesforce. |
LoginHistory | This is a table representing the LoginHistory entities in Salesforce. |
LoginIp | This is a table representing the LoginIp entities in Salesforce. |
MailmergeTemplate | This is a table representing the MailmergeTemplate entities in Salesforce. |
MobileDeviceRegistrar | This is a table representing the MobileDeviceRegistrar entities in Salesforce. |
Note | This is a table representing the Note entities in Salesforce. |
ObjectPermissions | This is a table representing the ObjectPermissions entities in Salesforce. |
Opportunity | This is a table representing the Opportunity entities in Salesforce. |
OpportunityCompetitor | This is a table representing the OpportunityCompetitor entities in Salesforce. |
OpportunityContactRole | This is a table representing the OpportunityContactRole entities in Salesforce. |
OpportunityFeed | This is a table representing the OpportunityFeed entities in Salesforce. |
OpportunityFieldHistory | This is a table representing the OpportunityFieldHistory entities in Salesforce. |
OpportunityHistory | This is a table representing the OpportunityHistory entities in Salesforce. |
OpportunityLineItem | This is a table representing the OpportunityLineItem entities in Salesforce. |
OpportunityPartner | This is a table representing the OpportunityPartner entities in Salesforce. |
OpportunityShare | This is a table representing the OpportunityShare entities in Salesforce. |
OpportunityStage | This is a table representing the OpportunityStage entities in Salesforce. |
Organization | This is a table representing the Organization entities in Salesforce. |
OrgWideEmailAddress | This is a table representing the OrgWideEmailAddress entities in Salesforce. |
Partner | This is a table representing the Partner entities in Salesforce. |
PartnerRole | This is a table representing the PartnerRole entities in Salesforce. |
Period | This is a table representing the Period entities in Salesforce. |
PermissionSet | This is a table representing the PermissionSet entities in Salesforce. |
PermissionSetAssignment | This is a table representing the PermissionSetAssignment entities in Salesforce. |
PermissionSetLicense | This is a table representing the PermissionSetLicense entities in Salesforce. |
PermissionSetLicenseAssign | This is a table representing the PermissionSetLicenseAssign entities in Salesforce. |
Pricebook2 | This is a table representing the Pricebook2 entities in Salesforce. |
Pricebook2History | This is a table representing the Pricebook2History entities in Salesforce. |
PricebookEntry | This is a table representing the PricebookEntry entities in Salesforce. |
ProcessDefinition | This is a table representing the ProcessDefinition entities in Salesforce. |
ProcessInstance | This is a table representing the ProcessInstance entities in Salesforce. |
ProcessInstanceStep | This is a table representing the ProcessInstanceStep entities in Salesforce. |
ProcessInstanceWorkitem | This is a table representing the ProcessInstanceWorkitem entities in Salesforce. |
ProcessNode | This is a table representing the ProcessNode entities in Salesforce. |
Product2 | This is a table representing the Product2 entities in Salesforce. |
Product2Feed | This is a table representing the Product2Feed entities in Salesforce. |
Profile | This is a table representing the Profile entities in Salesforce. |
PushTopic | This is a table representing the PushTopic entities in Salesforce. |
QueueSobject | This is a table representing the QueueSobject entities in Salesforce. |
Quote | This is a table representing the Quote entities in Salesforce. |
QuoteDocument | This is a table representing the QuoteDocument entities in Salesforce. |
QuoteFeed | This is a table representing the QuoteFeed entities in Salesforce. |
QuoteLineItem | This is a table representing the QuoteLineItem entities in Salesforce. |
RecentlyViewed | This is a table representing the RecentlyViewed entities in Salesforce. |
RecordType | This is a table representing the RecordType entities in Salesforce. |
Report | This is a table representing the Report entities in Salesforce. |
ReportFeed | This is a table representing the ReportFeed entities in Salesforce. |
Scontrol | This is a table representing the Scontrol entities in Salesforce. |
SelfServiceUser | This is a table representing the SelfServiceUser entities in Salesforce. |
SetupEntityAccess | This is a table representing the SetupEntityAccess entities in Salesforce. |
Site | This is a table representing the Site entities in Salesforce. |
SiteFeed | This is a table representing the SiteFeed entities in Salesforce. |
SiteHistory | This is a table representing the SiteHistory entities in Salesforce. |
Solution | This is a table representing the Solution entities in Salesforce. |
SolutionFeed | This is a table representing the SolutionFeed entities in Salesforce. |
SolutionHistory | This is a table representing the SolutionHistory entities in Salesforce. |
SolutionStatus | This is a table representing the SolutionStatus entities in Salesforce. |
StaticResource | This is a table representing the StaticResource entities in Salesforce. |
Task | This is a table representing the Task entities in Salesforce. To retrieve archived tasks, you must explicitly query for records with IsArchived set to True. |
TaskFeed | This is a table representing the TaskFeed entities in Salesforce. |
TaskPriority | This is a table representing the TaskPriority entities in Salesforce. |
TaskStatus | This is a table representing the TaskStatus entities in Salesforce. |
Topic | This is a table representing the Topic entities in Salesforce. |
TopicAssignment | This is a table representing the TopicAssignment entities in Salesforce. |
TopicFeed | This is a table representing the TopicFeed entities in Salesforce. |
UndecidedEventRelation | This is a table representing the UndecidedEventRelation entities in Salesforce. |
User | This is a table representing the User entities in Salesforce. |
UserFeed | This is a table representing the UserFeed entities in Salesforce. |
UserLicense | This is a table representing the UserLicense entities in Salesforce. |
UserLogin | This is a table representing the UserLogin entities in Salesforce. |
UserPreference | This is a table representing the UserPreference entities in Salesforce. |
UserProfile | This is a table representing the UserProfile entities in Salesforce. |
UserRecordAccess | This is a table representing the UserRecordAccess entities in Salesforce. |
UserRole | This is a table representing the UserRole entities in Salesforce. |
Vote | This is a table representing the Vote entities in Salesforce. |
WebLink | This is a table representing the WebLink entities in Salesforce. |
The Cloud can also expose custom entities on your Salesforce account that are not mentioned in the Tables. You can query against these custom entities as with any other table. Additionally, you can query against custom fields of standard entities.
There is a naming limitation that applies to the lists and to the custom fields. Empty spaces in list names are converted to underscores for the table names. Also, all custom fields and custom entities are identified by Salesforce with a __c appended to the end of the name.
As of the Spring20 release of the Salesforce's APIs, access for users without the "Customize Application" permission to read unprotected custom metadata types is revoked. To minimize the impact on your users, admins with the Customize Application permission can grant read access through profile or permission sets. See this link for more info.
This is a table representing the AcceptedEventRelation entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AcceptedEventRelation. | |
RelationId | String | True |
Label Relation ID corresponds to this field. | |
EventId | String | True |
Event.Id |
Label Event ID corresponds to this field. |
RespondedDate | Datetime | True |
Label Response Date corresponds to this field. | |
Response | String | True |
Label Response corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Type | String | True |
Label Type corresponds to this field. |
This is a table representing the Account entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Account. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
MasterRecordId | String | True |
Account.Id |
Label Master Record ID corresponds to this field. |
Name | String | False |
Label Account Name corresponds to this field. | |
Type | String | False |
Label Account Type corresponds to this field. | |
ParentId | String | False |
Account.Id |
Label Parent Account ID corresponds to this field. |
BillingStreet | String | False |
Label Billing Street corresponds to this field. | |
BillingCity | String | False |
Label Billing City corresponds to this field. | |
BillingState | String | False |
Label Billing State/Province corresponds to this field. | |
BillingPostalCode | String | False |
Label Billing Zip/Postal Code corresponds to this field. | |
BillingCountry | String | False |
Label Billing Country corresponds to this field. | |
BillingLatitude | Double | False |
Label Billing Latitude corresponds to this field. | |
BillingLongitude | Double | False |
Label Billing Longitude corresponds to this field. | |
ShippingStreet | String | False |
Label Shipping Street corresponds to this field. | |
ShippingCity | String | False |
Label Shipping City corresponds to this field. | |
ShippingState | String | False |
Label Shipping State/Province corresponds to this field. | |
ShippingPostalCode | String | False |
Label Shipping Zip/Postal Code corresponds to this field. | |
ShippingCountry | String | False |
Label Shipping Country corresponds to this field. | |
ShippingLatitude | Double | False |
Label Shipping Latitude corresponds to this field. | |
ShippingLongitude | Double | False |
Label Shipping Longitude corresponds to this field. | |
Phone | String | False |
Label Account Phone corresponds to this field. | |
Fax | String | False |
Label Account Fax corresponds to this field. | |
AccountNumber | String | False |
Label Account Number corresponds to this field. | |
Website | String | False |
Label Website corresponds to this field. | |
Sic | String | False |
Label SIC Code corresponds to this field. | |
Industry | String | False |
Label Industry corresponds to this field. | |
AnnualRevenue | Double | False |
Label Annual Revenue corresponds to this field. | |
NumberOfEmployees | Int | False |
Label Employees corresponds to this field. | |
Ownership | String | False |
Label Ownership corresponds to this field. | |
TickerSymbol | String | False |
Label Ticker Symbol corresponds to this field. | |
Description | String | False |
Label Account Description corresponds to this field. | |
Rating | String | False |
Label Account Rating corresponds to this field. | |
Site | String | False |
Label Account Site corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastActivityDate | Datetime | True |
Label Last Activity corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
Jigsaw | String | False |
Label Data.com Key corresponds to this field. | |
JigsawCompanyId | String | True |
Label Jigsaw Company ID corresponds to this field. | |
AccountSource | String | False |
Label Account Source corresponds to this field. | |
SicDesc | String | False |
Label SIC Description corresponds to this field. | |
NumberofLocations__c | Double | False |
Label Number of Locations corresponds to this field. | |
SLAExpirationDate__c | Datetime | False |
Label SLA Expiration Date corresponds to this field. | |
UpsellOpportunity__c | String | False |
Label Upsell Opportunity corresponds to this field. | |
SLASerialNumber__c | String | False |
Label SLA Serial Number corresponds to this field. | |
SLA__c | String | False |
Label SLA corresponds to this field. | |
CustomerPriority__c | String | False |
Label Customer Priority corresponds to this field. | |
Active__c | String | False |
Label Active corresponds to this field. | |
MyAutoNumber__c | String | True |
Label MyAutoNumber corresponds to this field. | |
MyFormula__c | String | True |
Label MyFormula corresponds to this field. | |
MyRollupSummary__c | Double | True |
Label MyRollupSummary corresponds to this field. | |
MyCheckBox__c | Boolean | False |
Label MyCheckBox corresponds to this field. | |
MyEmail__c | String | False |
Label MyEmail corresponds to this field. | |
MyPercent__c | Double | False |
Label MyPercent corresponds to this field. | |
Custom_Date_Time__c | Datetime | False |
Label Custom Date Time corresponds to this field. | |
New_Currency_Field__c | Double | False |
Label New_Currency_Field corresponds to this field. | |
New_Currency_Field_2__c | Double | False |
Label New_Currency_Field_2 corresponds to this field. | |
DO_NOT_USE__c | Boolean | False |
Label DO_NOT_USE corresponds to this field. | |
CustomNumber__c | Double | False |
Label CustomNumber corresponds to this field. | |
FiveChar_TextField__c | String | False |
Label FiveChar_TextField corresponds to this field. | |
FiveChar_CurrencyField__c | Double | False |
Label FiveChar_CurrencyField corresponds to this field. | |
FiveChar_NumberField__c | Double | False |
Label FiveChar_NumberField corresponds to this field. | |
FiveChar_PercentField__c | Double | False |
Label FiveChar_PercentField corresponds to this field. | |
FiveChar_TextAreaMasked__c | String | False |
Label FiveChar_TextAreaMasked corresponds to this field. | |
NewField__c | Double | False |
Label NewField corresponds to this field. |
This is a table representing the AccountContactRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AccountContactRole. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
AccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
Role | String | False |
Label Role corresponds to this field. | |
IsPrimary | Boolean | False |
Label Primary corresponds to this field. |
This is a table representing the AccountFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AccountFeed. | |
ParentId | String | True |
Account.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the AccountHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AccountHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
AccountId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the AccountPartner entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AccountPartner. | |
AccountFromId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
AccountToId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
OpportunityId | String | True |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
Role | String | True |
Label Role corresponds to this field. | |
IsPrimary | Boolean | True |
Label Primary corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ReversePartnerId | String | True |
Label Reverse Partner ID corresponds to this field. |
This is a table representing the AdditionalNumber entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AdditionalNumber. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CallCenterId | String | False |
CallCenter.Id |
Label Call Center ID corresponds to this field. |
Name | String | False |
Label Name corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
Phone | String | False |
Label Phone corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ApexClass entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexClass. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
ApiVersion | Double | False |
Label Api Version corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
IsValid | Boolean | False |
Label Is Valid corresponds to this field. | |
BodyCrc | Double | False |
Label Body CRC corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
LengthWithoutComments | Int | False |
Label Size Without Comments corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ApexComponent entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexComponent. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
ApiVersion | Double | False |
Label Api Version corresponds to this field. | |
MasterLabel | String | False |
Label Label corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
ControllerType | String | False |
Label Controller Type corresponds to this field. | |
ControllerKey | String | False |
Label Controller Key corresponds to this field. | |
Markup | String | False |
Label Markup corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ApexLog entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexLog. | |
LogUserId | String | True |
Label Log User ID corresponds to this field. | |
LogLength | Int | True |
Label Log Size (bytes) corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Date corresponds to this field. | |
Request | String | True |
Label Request Type corresponds to this field. | |
Operation | String | True |
Label Operation corresponds to this field. | |
Application | String | True |
Label Application corresponds to this field. | |
Status | String | True |
Label Status corresponds to this field. | |
DurationMilliseconds | Int | True |
Label Duration (ms) corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
StartTime | Datetime | True |
Label Start Time corresponds to this field. | |
Location | String | True |
Label Location corresponds to this field. |
This is a table representing the ApexPage entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexPage. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
ApiVersion | Double | False |
Label Api Version corresponds to this field. | |
MasterLabel | String | False |
Label Label corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
ControllerType | String | False |
Label Controller Type corresponds to this field. | |
ControllerKey | String | False |
Label Controller Key corresponds to this field. | |
IsAvailableInTouch | Boolean | False |
Label Available for Salesforce mobile apps corresponds to this field. | |
IsConfirmationTokenRequired | Boolean | False |
Label Require CSRF protection on GET requests corresponds to this field. | |
Markup | String | False |
Label Markup corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ApexTestQueueItem entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexTestQueueItem. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
ApexClassId | String | False |
ApexClass.Id |
Label Class ID corresponds to this field. |
Status | String | True |
Label Status corresponds to this field. | |
ExtendedStatus | String | True |
Label Status Detail corresponds to this field. | |
ParentJobId | String | True |
AsyncApexJob.Id |
Label Apex Job ID corresponds to this field. |
This is a table representing the ApexTestResult entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexTestResult. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
TestTimestamp | Datetime | True |
Label Time Started corresponds to this field. | |
Outcome | String | True |
Label Pass/Fail corresponds to this field. | |
ApexClassId | String | True |
ApexClass.Id |
Label Class ID corresponds to this field. |
MethodName | String | True |
Label Method Name corresponds to this field. | |
Message | String | True |
Label Error Message corresponds to this field. | |
StackTrace | String | True |
Label Stack Trace corresponds to this field. | |
AsyncApexJobId | String | True |
AsyncApexJob.Id |
Label Apex Job ID corresponds to this field. |
QueueItemId | String | True |
Label Apex Test Queue Item ID corresponds to this field. | |
ApexLogId | String | True |
ApexLog.Id |
Label Log ID corresponds to this field. |
This is a table representing the ApexTrigger entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ApexTrigger. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
TableEnumOrId | String | False |
Label Custom Object Definition ID corresponds to this field. | |
UsageBeforeInsert | Boolean | False |
Label BeforeInsert corresponds to this field. | |
UsageAfterInsert | Boolean | False |
Label AfterInsert corresponds to this field. | |
UsageBeforeUpdate | Boolean | False |
Label BeforeUpdate corresponds to this field. | |
UsageAfterUpdate | Boolean | False |
Label AfterUpdate corresponds to this field. | |
UsageBeforeDelete | Boolean | False |
Label BeforeDelete corresponds to this field. | |
UsageAfterDelete | Boolean | False |
Label AfterDelete corresponds to this field. | |
UsageIsBulk | Boolean | False |
Label IsBulk corresponds to this field. | |
UsageAfterUndelete | Boolean | False |
Label AfterUndelete corresponds to this field. | |
ApiVersion | Double | False |
Label Api Version corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
IsValid | Boolean | False |
Label Is Valid corresponds to this field. | |
BodyCrc | Double | False |
Label Body CRC corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
LengthWithoutComments | Int | False |
Label Size Without Comments corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Approval entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Approval. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ParentId | String | False |
Contract.Id |
Label Parent ID corresponds to this field. |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
Status | String | False |
Label Status corresponds to this field. | |
RequestComment | String | False |
Label Request Comment corresponds to this field. | |
ApproveComment | String | False |
Label Approve/Reject Comment corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Asset entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Asset. | |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
AccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
Product2Id | String | False |
Product2.Id |
Label Product ID corresponds to this field. |
IsCompetitorProduct | Boolean | False |
Label Competitor Asset corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | False |
Label Asset Name corresponds to this field. | |
SerialNumber | String | False |
Label Serial Number corresponds to this field. | |
InstallDate | Datetime | False |
Label Install Date corresponds to this field. | |
PurchaseDate | Datetime | False |
Label Purchase Date corresponds to this field. | |
UsageEndDate | Datetime | False |
Label Usage End Date corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
Price | Double | False |
Label Price corresponds to this field. | |
Quantity | Double | False |
Label Quantity corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. |
This is a table representing the AssetFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AssetFeed. | |
ParentId | String | True |
Asset.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the AssignmentRule entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AssignmentRule. | |
Name | String | True |
Label Name corresponds to this field. | |
SobjectType | String | True |
Label SObject Type corresponds to this field. | |
Active | Boolean | True |
Label Active corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the AsyncApexJob entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AsyncApexJob. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
JobType | String | True |
Label Job Type corresponds to this field. | |
ApexClassId | String | True |
ApexClass.Id |
Label Class ID corresponds to this field. |
Status | String | True |
Label Status corresponds to this field. | |
JobItemsProcessed | Int | True |
Label Batches Processed corresponds to this field. | |
TotalJobItems | Int | True |
Label Total Batches corresponds to this field. | |
NumberOfErrors | Int | True |
Label Failures corresponds to this field. | |
CompletedDate | Datetime | True |
Label Completion Date corresponds to this field. | |
MethodName | String | True |
Label Apex Method corresponds to this field. | |
ExtendedStatus | String | True |
Label Status Detail corresponds to this field. | |
ParentJobId | String | True |
AsyncApexJob.Id |
Label Apex Job ID corresponds to this field. |
LastProcessed | String | True |
Label Last ID processed and committed corresponds to this field. | |
LastProcessedOffset | Int | True |
Label Offset of last ID processed and committed corresponds to this field. |
This is a table representing the Attachment entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Attachment. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
Name | String | False |
Label File Name corresponds to this field. | |
IsPrivate | Boolean | False |
Label Private corresponds to this field. | |
ContentType | String | False |
Label Content Type corresponds to this field. | |
BodyLength | Int | True |
Label Body Length corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
Label Last Modified By ID corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. |
This is a table representing the AuthProvider entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AuthProvider. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
ProviderType | String | False |
Label Provider Type corresponds to this field. | |
FriendlyName | String | False |
Label Name corresponds to this field. | |
DeveloperName | String | False |
Label URL Suffix corresponds to this field. | |
RegistrationHandlerId | String | False |
ApexClass.Id |
Label Class ID corresponds to this field. |
ExecutionUserId | String | False |
User.Id |
Label User ID corresponds to this field. |
ConsumerKey | String | False |
Label Consumer Key corresponds to this field. | |
ConsumerSecret | String | False |
Label Consumer Secret corresponds to this field. | |
ErrorUrl | String | False |
Label Custom Error URL corresponds to this field. | |
AuthorizeUrl | String | False |
Label Authorize Endpoint URL corresponds to this field. | |
TokenUrl | String | False |
Label Token Endpoint URL corresponds to this field. | |
UserInfoUrl | String | False |
Label User Info Endpoint URL corresponds to this field. | |
DefaultScopes | String | False |
Label Default Scopes corresponds to this field. |
This is a table representing the AuthSession entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the AuthSession. | |
UsersId | String | True |
User.Id |
Label User ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Updated corresponds to this field. | |
NumSecondsValid | Int | True |
Label Valid For corresponds to this field. | |
UserType | String | True |
Label User Type corresponds to this field. | |
SourceIp | String | True |
Label Source IP corresponds to this field. | |
LoginType | String | True |
Label Login corresponds to this field. | |
SessionType | String | True |
Label Session Type corresponds to this field. | |
SessionSecurityLevel | String | True |
Label Session Security Level corresponds to this field. |
This is a table representing the BrandTemplate entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the BrandTemplate. | |
Name | String | False |
Label Brand Template Name corresponds to this field. | |
DeveloperName | String | False |
Label Letterhead Unique Name corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
Value | String | False |
Label Value corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the BusinessHours entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the BusinessHours. | |
Name | String | False |
Label Business Hours Name corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
IsDefault | Boolean | False |
Label Default Business Hours corresponds to this field. | |
SundayStartTime | String | False |
Label Sunday Start corresponds to this field. | |
SundayEndTime | String | False |
Label Sunday End corresponds to this field. | |
MondayStartTime | String | False |
Label Monday Start corresponds to this field. | |
MondayEndTime | String | False |
Label Monday End corresponds to this field. | |
TuesdayStartTime | String | False |
Label Tuesday Start corresponds to this field. | |
TuesdayEndTime | String | False |
Label Tuesday End corresponds to this field. | |
WednesdayStartTime | String | False |
Label Wednesday Start corresponds to this field. | |
WednesdayEndTime | String | False |
Label Wednesday End corresponds to this field. | |
ThursdayStartTime | String | False |
Label Thursday Start corresponds to this field. | |
ThursdayEndTime | String | False |
Label Thursday End corresponds to this field. | |
FridayStartTime | String | False |
Label Friday Start corresponds to this field. | |
FridayEndTime | String | False |
Label Friday End corresponds to this field. | |
SaturdayStartTime | String | False |
Label Saturday Start corresponds to this field. | |
SaturdayEndTime | String | False |
Label Saturday End corresponds to this field. | |
TimeZoneSidKey | String | False |
Label Time Zone corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
This is a table representing the BusinessProcess entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the BusinessProcess. | |
Name | String | False |
Label Name corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
TableEnumOrId | String | False |
Label Entity Enumeration Or ID corresponds to this field. | |
IsActive | Boolean | True |
Label Active corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CallCenter entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CallCenter. | |
Name | String | False |
Label Name corresponds to this field. | |
InternalName | String | False |
Label Internal Name corresponds to this field. | |
Version | Double | False |
Label Version corresponds to this field. | |
AdapterUrl | String | False |
Label CTI Adapter URL corresponds to this field. | |
CustomSettings | String | False |
Label Custom Settings corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
This is a table representing the Campaign entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Campaign. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
Type | String | False |
Label Type corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
StartDate | Datetime | False |
Label Start Date corresponds to this field. | |
EndDate | Datetime | False |
Label End Date corresponds to this field. | |
ExpectedRevenue | Double | False |
Label Expected Revenue corresponds to this field. | |
BudgetedCost | Double | False |
Label Budgeted Cost corresponds to this field. | |
ActualCost | Double | False |
Label Actual Cost corresponds to this field. | |
ExpectedResponse | Double | False |
Label Expected Response (%) corresponds to this field. | |
NumberSent | Double | False |
Label Num Sent corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
NumberOfLeads | Int | True |
Label Total Leads corresponds to this field. | |
NumberOfConvertedLeads | Int | True |
Label Converted Leads corresponds to this field. | |
NumberOfContacts | Int | True |
Label Total Contacts corresponds to this field. | |
NumberOfResponses | Int | True |
Label Total Responses corresponds to this field. | |
NumberOfOpportunities | Int | True |
Label Num Total Opportunities corresponds to this field. | |
NumberOfWonOpportunities | Int | True |
Label Num Won Opportunities corresponds to this field. | |
AmountAllOpportunities | Double | True |
Label Total Value Opportunities corresponds to this field. | |
AmountWonOpportunities | Double | True |
Label Total Value Won Opportunities corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastActivityDate | Datetime | True |
Label Last Activity corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
CampaignMemberRecordTypeId | String | False |
RecordType.Id |
Label Record Type ID corresponds to this field. |
Myfield__c | String | False |
Label Myfield Nothing to do here corresponds to this field. |
This is a table representing the CampaignFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CampaignFeed. | |
ParentId | String | True |
Campaign.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the CampaignMember entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CampaignMember. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CampaignId | String | False |
Campaign.Id |
Label Campaign ID corresponds to this field. |
LeadId | String | False |
Lead.Id |
Label Lead ID corresponds to this field. |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
Status | String | False |
Label Status corresponds to this field. | |
HasResponded | Boolean | True |
Label Responded corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
FirstRespondedDate | Datetime | True |
Label First Responded Date corresponds to this field. |
This is a table representing the CampaignMemberStatus entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CampaignMemberStatus. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CampaignId | String | False |
Campaign.Id |
Label Campaign ID corresponds to this field. |
Label | String | False |
Label Label corresponds to this field. | |
SortOrder | Int | False |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | False |
Label Is Default corresponds to this field. | |
HasResponded | Boolean | False |
Label Responded corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Case entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Case. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CaseNumber | String | True |
Label Case Number corresponds to this field. | |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
AccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
AssetId | String | False |
Asset.Id |
Label Asset ID corresponds to this field. |
SuppliedName | String | False |
Label Name corresponds to this field. | |
SuppliedEmail | String | False |
Label Email Address corresponds to this field. | |
SuppliedPhone | String | False |
Label Phone corresponds to this field. | |
SuppliedCompany | String | False |
Label Company corresponds to this field. | |
Type | String | False |
Label Case Type corresponds to this field. | |
RecordTypeId | String | False |
RecordType.Id |
Label Record Type ID corresponds to this field. |
Status | String | False |
Label Status corresponds to this field. | |
Reason | String | False |
Label Case Reason corresponds to this field. | |
Origin | String | False |
Label Case Origin corresponds to this field. | |
Subject | String | False |
Label Subject corresponds to this field. | |
Priority | String | False |
Label Priority corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
IsClosed | Boolean | True |
Label Closed corresponds to this field. | |
ClosedDate | Datetime | True |
Label Closed Date corresponds to this field. | |
IsEscalated | Boolean | False |
Label Escalated corresponds to this field. | |
HasCommentsUnreadByOwner | Boolean | True |
Label New Self-Service Comment corresponds to this field. | |
HasSelfServiceComments | Boolean | True |
Label Self-Service Commented corresponds to this field. | |
OwnerId | String | False |
Label Owner ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
EngineeringReqNumber__c | String | False |
Label Engineering Req Number corresponds to this field. | |
Product__c | String | False |
Label Product corresponds to this field. | |
SLAViolation__c | String | False |
Label SLA Violation corresponds to this field. | |
PotentialLiability__c | String | False |
Label Potential Liability corresponds to this field. | |
TCO_Presentation__c | Datetime | False |
Label TCO_Presentation corresponds to this field. |
This is a table representing the CaseComment entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseComment. | |
ParentId | String | False |
Case.Id |
Label Parent ID corresponds to this field. |
IsPublished | Boolean | False |
Label Published corresponds to this field. | |
CommentBody | String | False |
Label Body corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
Label Last Modified By ID corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the CaseContactRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseContactRole. | |
CasesId | String | False |
Case.Id |
Label Case ID corresponds to this field. |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
Role | String | False |
Label Role corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the CaseFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseFeed. | |
ParentId | String | True |
Case.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the CaseHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CaseId | String | True |
Case.Id |
Label Case ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the CaseSolution entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseSolution. | |
CaseId | String | False |
Case.Id |
Label Case ID corresponds to this field. |
SolutionId | String | False |
Solution.Id |
Label Solution ID corresponds to this field. |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the CaseStatus entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseStatus. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | True |
Label Is Default corresponds to this field. | |
IsClosed | Boolean | True |
Label Is Closed corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CaseTeamMember entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseTeamMember. | |
ParentId | String | False |
Case.Id |
Label Case ID corresponds to this field. |
MemberId | String | False |
Label Member ID corresponds to this field. | |
TeamTemplateMemberId | String | True |
Label Team Template Member ID corresponds to this field. | |
TeamRoleId | String | False |
CaseTeamRole.Id |
Label Team Role ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CaseTeamRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseTeamRole. | |
Name | String | False |
Label Name corresponds to this field. | |
AccessLevel | String | False |
Label Access Level corresponds to this field. | |
PreferencesVisibleInCSP | Boolean | False |
Label Visible in Customer Portal corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CaseTeamTemplate entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseTeamTemplate. | |
Name | String | False |
Label Name corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CaseTeamTemplateMember entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseTeamTemplateMember. | |
TeamTemplateId | String | False |
Label Team Template ID corresponds to this field. | |
MemberId | String | False |
Label Member ID corresponds to this field. | |
TeamRoleId | String | False |
CaseTeamRole.Id |
Label Team Role ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CaseTeamTemplateRecord entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CaseTeamTemplateRecord. | |
ParentId | String | False |
Case.Id |
Label Case ID corresponds to this field. |
TeamTemplateId | String | False |
Label Team Template ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CategoryData entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CategoryData. | |
CategoryNodeId | String | False |
CategoryNode.Id |
Label Category Node ID corresponds to this field. |
RelatedSobjectId | String | False |
Solution.Id |
Label SObject ID corresponds to this field. |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CategoryNode entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CategoryNode. | |
ParentId | String | False |
CategoryNode.Id |
Label Parent Category Node ID corresponds to this field. |
MasterLabel | String | False |
Label Name corresponds to this field. | |
SortOrder | Int | False |
Label Sort Order corresponds to this field. | |
SortStyle | String | False |
Label Subcategory Sort Style corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ChatterActivity entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ChatterActivity. | |
ParentId | String | True |
Label Parent ID corresponds to this field. | |
PostCount | Int | True |
Label Post Count corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
CommentReceivedCount | Int | True |
Label Comment Received Count corresponds to this field. | |
LikeReceivedCount | Int | True |
Label Like Received Count corresponds to this field. | |
InfluenceRawRank | Int | True |
Label Influence Raw Rank corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ClientBrowser entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ClientBrowser. | |
UsersId | String | True |
User.Id |
Label User ID corresponds to this field. |
FullUserAgent | String | True |
Label Full User Agent corresponds to this field. | |
ProxyInfo | String | True |
Label Proxy Info corresponds to this field. | |
LastUpdate | Datetime | True |
Label Last Update corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. |
This is a table representing the CollaborationGroup entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CollaborationGroup. | |
Name | String | False |
Label Name corresponds to this field. | |
MemberCount | Int | True |
Label Member Count corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CollaborationType | String | False |
Label Access Type corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
FullPhotoUrl | String | True |
Label Url for full-sized Photo corresponds to this field. | |
SmallPhotoUrl | String | True |
Label Url for Thumbnail sized Photo corresponds to this field. | |
LastFeedModifiedDate | Datetime | True |
Label Last Feed Modified Date corresponds to this field. | |
InformationTitle | String | False |
Label Information Title corresponds to this field. | |
InformationBody | String | False |
Label Information corresponds to this field. | |
HasPrivateFieldsAccess | Boolean | True |
Label Has Private Fields Access corresponds to this field. | |
CanHaveGuests | Boolean | False |
Label Allow Customers corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
IsArchived | Boolean | False |
Label Is Archived corresponds to this field. | |
IsAutoArchiveDisabled | Boolean | False |
Label Is Auto Archive Disabled corresponds to this field. |
This is a table representing the CollaborationGroupFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CollaborationGroupFeed. | |
ParentId | String | True |
Label Parent ID corresponds to this field. | |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the CollaborationGroupMember entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CollaborationGroupMember. | |
CollaborationGroupId | String | False |
Label CollaborationGroup ID corresponds to this field. | |
MemberId | String | False |
User.Id |
Label Member ID corresponds to this field. |
CollaborationRole | String | False |
Label Group Member Role corresponds to this field. | |
NotificationFrequency | String | False |
Label Notification Frequency corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CollaborationGroupMemberRequest entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CollaborationGroupMemberRequest. | |
CollaborationGroupId | String | False |
Label CollaborationGroup ID corresponds to this field. | |
RequesterId | String | False |
User.Id |
Label User ID corresponds to this field. |
ResponseMessage | String | True |
Label Response Message corresponds to this field. | |
Status | String | True |
Label Status corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CollaborationInvitation entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CollaborationInvitation. | |
ParentId | String | True |
Label Parent ID corresponds to this field. | |
SharedEntityId | String | False |
Label Shared Entity ID corresponds to this field. | |
InviterId | String | True |
User.Id |
Label Inviter User ID corresponds to this field. |
InvitedUserEmail | String | False |
Label Invited Email corresponds to this field. | |
InvitedUserEmailNormalized | String | True |
Label Invited Email (Normalized) corresponds to this field. | |
Status | String | True |
Label Invitation Status corresponds to this field. | |
OptionalMessage | String | False |
Label Optional Message corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Community entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Community. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
Name | String | True |
Label Name corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
IsActive | Boolean | True |
Label Active corresponds to this field. |
This is a table representing the Contact entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Contact. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
MasterRecordId | String | True |
Contact.Id |
Label Master Record ID corresponds to this field. |
AccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
LastName | String | False |
Label Last Name corresponds to this field. | |
FirstName | String | False |
Label First Name corresponds to this field. | |
Salutation | String | False |
Label Salutation corresponds to this field. | |
Name | String | True |
Label Full Name corresponds to this field. | |
OtherStreet | String | False |
Label Other Street corresponds to this field. | |
OtherCity | String | False |
Label Other City corresponds to this field. | |
OtherState | String | False |
Label Other State/Province corresponds to this field. | |
OtherPostalCode | String | False |
Label Other Zip/Postal Code corresponds to this field. | |
OtherCountry | String | False |
Label Other Country corresponds to this field. | |
OtherLatitude | Double | False |
Label Other Latitude corresponds to this field. | |
OtherLongitude | Double | False |
Label Other Longitude corresponds to this field. | |
MailingStreet | String | False |
Label Mailing Street corresponds to this field. | |
MailingCity | String | False |
Label Mailing City corresponds to this field. | |
MailingState | String | False |
Label Mailing State/Province corresponds to this field. | |
MailingPostalCode | String | False |
Label Mailing Zip/Postal Code corresponds to this field. | |
MailingCountry | String | False |
Label Mailing Country corresponds to this field. | |
MailingLatitude | Double | False |
Label Mailing Latitude corresponds to this field. | |
MailingLongitude | Double | False |
Label Mailing Longitude corresponds to this field. | |
Phone | String | False |
Label Business Phone corresponds to this field. | |
Fax | String | False |
Label Business Fax corresponds to this field. | |
MobilePhone | String | False |
Label Mobile Phone corresponds to this field. | |
HomePhone | String | False |
Label Home Phone corresponds to this field. | |
OtherPhone | String | False |
Label Other Phone corresponds to this field. | |
AssistantPhone | String | False |
Label Asst. Phone corresponds to this field. | |
ReportsToId | String | False |
Contact.Id |
Label Reports To ID corresponds to this field. |
String | False |
Label Email corresponds to this field. | ||
Title | String | False |
Label Title corresponds to this field. | |
Department | String | False |
Label Department corresponds to this field. | |
AssistantName | String | False |
Label Assistant's Name corresponds to this field. | |
LeadSource | String | False |
Label Lead Source corresponds to this field. | |
Birthdate | Datetime | False |
Label Birthdate corresponds to this field. | |
Description | String | False |
Label Contact Description corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastActivityDate | Datetime | True |
Label Last Activity corresponds to this field. | |
LastCURequestDate | Datetime | True |
Label Last Stay-in-Touch Request Date corresponds to this field. | |
LastCUUpdateDate | Datetime | True |
Label Last Stay-in-Touch Save Date corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
EmailBouncedReason | String | False |
Label Email Bounced Reason corresponds to this field. | |
EmailBouncedDate | Datetime | False |
Label Email Bounced Date corresponds to this field. | |
IsEmailBounced | Boolean | True |
Label Is Email Bounced corresponds to this field. | |
Jigsaw | String | False |
Label Data.com Key corresponds to this field. | |
JigsawContactId | String | True |
Label Jigsaw Contact ID corresponds to this field. | |
Languages__c | String | False |
Label Languages corresponds to this field. | |
Level__c | String | False |
Label Level corresponds to this field. | |
MyNote__c | String | False |
Label MyNote corresponds to this field. | |
MyExternalId__c | String | False |
Label MyExternalId corresponds to this field. | |
MyExternalId2__c | String | False |
Label MyExternalId2 corresponds to this field. | |
AcctLookup__c | String | False |
Account.Id |
Label Account corresponds to this field. |
This is a table representing the ContactFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContactFeed. | |
ParentId | String | True |
Contact.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the ContactHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContactHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ContactId | String | True |
Contact.Id |
Label Contact ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the ContentDocument entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContentDocument. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
IsArchived | Boolean | True |
Label Is Archived corresponds to this field. | |
ArchivedById | String | True |
User.Id |
Label User ID corresponds to this field. |
ArchivedDate | Datetime | True |
Label Archived Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Is Deleted corresponds to this field. | |
OwnerId | String | True |
User.Id |
Label Owner ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
PublishStatus | String | True |
Label Publish Status corresponds to this field. | |
LatestPublishedVersionId | String | True |
Label Latest Published Version ID corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the ContentDocumentFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContentDocumentFeed. | |
ParentId | String | True |
Label Parent ID corresponds to this field. | |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the ContentDocumentHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContentDocumentHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ContentDocumentId | String | True |
Label ContentDocument ID corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the ContentDocumentLink entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContentDocumentLink. | |
LinkedEntityId | String | False |
Label Linked Entity ID corresponds to this field. | |
ContentDocumentId | String | False |
Label ContentDocument ID corresponds to this field. | |
IsDeleted | Boolean | True |
Label Is Deleted corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
ShareType | String | False |
Label Share Type corresponds to this field. |
This is a table representing the ContentVersion entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContentVersion. | |
ContentDocumentId | String | False |
Label ContentDocument ID corresponds to this field. | |
IsLatest | Boolean | True |
Label Is Latest corresponds to this field. | |
ContentUrl | String | False |
Label Content URL corresponds to this field. | |
VersionNumber | String | True |
Label Version Number corresponds to this field. | |
Title | String | False |
Label Title corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
ReasonForChange | String | False |
Label Reason For Change corresponds to this field. | |
PathOnClient | String | False |
Label Path On Client corresponds to this field. | |
RatingCount | Int | True |
Label Rating Count corresponds to this field. | |
IsDeleted | Boolean | True |
Label Is Deleted corresponds to this field. | |
ContentModifiedDate | Datetime | True |
Label Content Modified Date corresponds to this field. | |
ContentModifiedById | String | True |
User.Id |
Label User ID corresponds to this field. |
PositiveRatingCount | Int | True |
Label Positive Rating Count corresponds to this field. | |
NegativeRatingCount | Int | True |
Label Negative Rating Count corresponds to this field. | |
FeaturedContentBoost | Int | True |
Label Featured Content Boost corresponds to this field. | |
FeaturedContentDate | Datetime | True |
Label Featured Content Date corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
TagCsv | String | False |
Label Tags corresponds to this field. | |
FileType | String | True |
Label File Type corresponds to this field. | |
PublishStatus | String | True |
Label Publish Status corresponds to this field. | |
VersionData | String | False |
Label Version Data corresponds to this field. | |
ContentSize | Int | True |
Label Size corresponds to this field. | |
FirstPublishLocationId | String | False |
Label First Publish Location ID corresponds to this field. | |
Origin | String | False |
Label Content Origin corresponds to this field. | |
Checksum | String | True |
Label Checksum corresponds to this field. |
This is a table representing the ContentVersionHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContentVersionHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ContentVersionId | String | True |
Label ContentVersion ID corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the Contract entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Contract. | |
AccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
OwnerExpirationNotice | String | False |
Label Owner Expiration Notice corresponds to this field. | |
StartDate | Datetime | False |
Label Contract Start Date corresponds to this field. | |
EndDate | Datetime | True |
Label Contract End Date corresponds to this field. | |
BillingStreet | String | False |
Label Billing Street corresponds to this field. | |
BillingCity | String | False |
Label Billing City corresponds to this field. | |
BillingState | String | False |
Label Billing State/Province corresponds to this field. | |
BillingPostalCode | String | False |
Label Billing Zip/Postal Code corresponds to this field. | |
BillingCountry | String | False |
Label Billing Country corresponds to this field. | |
BillingLatitude | Double | False |
Label Billing Latitude corresponds to this field. | |
BillingLongitude | Double | False |
Label Billing Longitude corresponds to this field. | |
ContractTerm | Int | False |
Label Contract Term corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
Status | String | False |
Label Status corresponds to this field. | |
CompanySignedId | String | False |
User.Id |
Label Company Signed By ID corresponds to this field. |
CompanySignedDate | Datetime | False |
Label Company Signed Date corresponds to this field. | |
CustomerSignedId | String | False |
Contact.Id |
Label Customer Signed By ID corresponds to this field. |
CustomerSignedTitle | String | False |
Label Customer Signed Title corresponds to this field. | |
CustomerSignedDate | Datetime | False |
Label Customer Signed Date corresponds to this field. | |
SpecialTerms | String | False |
Label Special Terms corresponds to this field. | |
ActivatedById | String | True |
User.Id |
Label Activated By ID corresponds to this field. |
ActivatedDate | Datetime | True |
Label Activated Date corresponds to this field. | |
StatusCode | String | True |
Label Status Category corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ContractNumber | String | True |
Label Contract Number corresponds to this field. | |
LastApprovedDate | Datetime | True |
Label Last Approved Date corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastActivityDate | Datetime | True |
Label Last Activity corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the ContractContactRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContractContactRole. | |
ContractId | String | False |
Contract.Id |
Label Contract ID corresponds to this field. |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
Role | String | False |
Label Role corresponds to this field. | |
IsPrimary | Boolean | False |
Label Primary corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the ContractFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContractFeed. | |
ParentId | String | True |
Contract.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the ContractHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContractHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ContractId | String | True |
Contract.Id |
Label Contract ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the ContractStatus entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ContractStatus. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | True |
Label Is Default corresponds to this field. | |
StatusCode | String | True |
Label Status Code corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the CronJobDetail entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CronJobDetail. | |
Name | String | True |
Label Job Name corresponds to this field. | |
JobType | String | True |
Label Type corresponds to this field. |
This is a table representing the CronTrigger entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the CronTrigger. | |
CronJobDetailId | String | True |
Label Job ID corresponds to this field. | |
NextFireTime | Datetime | True |
Label Next Run Time corresponds to this field. | |
PreviousFireTime | Datetime | True |
Label Previous Run Time corresponds to this field. | |
State | String | True |
Label Job State corresponds to this field. | |
StartTime | Datetime | True |
Label Start Time corresponds to this field. | |
EndTime | Datetime | True |
Label End Time corresponds to this field. | |
CronExpression | String | True |
Label Cron Expression corresponds to this field. | |
TimeZoneSidKey | String | True |
Label Java Time Zone Id corresponds to this field. | |
OwnerId | String | True |
User.Id |
Label User ID corresponds to this field. |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
TimesTriggered | Int | True |
Label Job Fired Count corresponds to this field. |
This is a table representing the Dashboard entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Dashboard. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
FolderId | String | True |
Label Folder ID corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
DeveloperName | String | True |
Label Dashboard Unique Name corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
LeftSize | String | True |
Label Left Size corresponds to this field. | |
MiddleSize | String | True |
Label Middle Size corresponds to this field. | |
RightSize | String | True |
Label Right Size corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
RunningUserId | String | True |
User.Id |
Label Running User ID corresponds to this field. |
TitleColor | Int | True |
Label Title Color corresponds to this field. | |
TitleSize | Int | True |
Label Title Size corresponds to this field. | |
TextColor | Int | True |
Label Text Color corresponds to this field. | |
BackgroundStart | Int | True |
Label Starting Color corresponds to this field. | |
BackgroundEnd | Int | True |
Label Ending Color corresponds to this field. | |
BackgroundDirection | String | True |
Label Background Fade Direction corresponds to this field. | |
Type | String | True |
Label Dashboard Running User corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the DashboardComponent entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the DashboardComponent. | |
Name | String | True |
Label Dashboard Component Name corresponds to this field. | |
DashboardId | String | True |
Dashboard.Id |
Label Dashboard ID corresponds to this field. |
This is a table representing the DashboardComponentFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the DashboardComponentFeed. | |
ParentId | String | True |
Label Parent ID corresponds to this field. | |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the DashboardFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the DashboardFeed. | |
ParentId | String | True |
Dashboard.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the DeclinedEventRelation entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the DeclinedEventRelation. | |
RelationId | String | True |
Label Relation ID corresponds to this field. | |
EventId | String | True |
Event.Id |
Label Event ID corresponds to this field. |
RespondedDate | Datetime | True |
Label Response Date corresponds to this field. | |
Response | String | True |
Label Response corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Type | String | True |
Label Type corresponds to this field. |
This is a table representing the Document entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Document. | |
FolderId | String | False |
Label Folder ID corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | False |
Label Document Name corresponds to this field. | |
DeveloperName | String | False |
Label Document Unique Name corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
ContentType | String | False |
Label MIME Type corresponds to this field. | |
Type | String | False |
Label File Extension corresponds to this field. | |
IsPublic | Boolean | False |
Label Externally Available corresponds to this field. | |
BodyLength | Int | True |
Label Body Length corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
Url | String | False |
Label Url corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
Keywords | String | False |
Label Keywords corresponds to this field. | |
IsInternalUseOnly | Boolean | False |
Label Internal Use Only corresponds to this field. | |
AuthorId | String | False |
User.Id |
Label Author ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsBodySearchable | Boolean | True |
Label Document Content Searchable corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the DocumentAttachmentMap entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the DocumentAttachmentMap. | |
ParentId | String | False |
Label Entity ID corresponds to this field. | |
DocumentId | String | False |
Document.Id |
Label Document ID corresponds to this field. |
DocumentSequence | Int | False |
Label Attachment Sequence corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
This is a table representing the Domain entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Domain. | |
DomainType | String | True |
Label Domain Type corresponds to this field. | |
Domain | String | True |
Label Domain Name corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the DomainSite entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the DomainSite. | |
DomainId | String | True |
Domain.Id |
Label Domain ID corresponds to this field. |
SiteId | String | True |
Site.Id |
Label Site ID corresponds to this field. |
PathPrefix | String | True |
Label Path corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the EmailServicesAddress entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the EmailServicesAddress. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
LocalPart | String | False |
Label Email address corresponds to this field. | |
EmailDomainName | String | True |
Label Email address domain corresponds to this field. | |
AuthorizedSenders | String | False |
Label Accept Email From corresponds to this field. | |
RunAsUserId | String | False |
User.Id |
Label User ID corresponds to this field. |
FunctionId | String | False |
Label Service ID corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the EmailServicesFunction entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the EmailServicesFunction. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
FunctionName | String | False |
Label Email Service Name corresponds to this field. | |
AuthorizedSenders | String | False |
Label Accept Email From corresponds to this field. | |
IsAuthenticationRequired | Boolean | False |
Label Advanced Email Security Settings corresponds to this field. | |
IsTlsRequired | Boolean | False |
Label TLS Required corresponds to this field. | |
AttachmentOption | String | False |
Label Accept Attachments corresponds to this field. | |
ApexClassId | String | False |
ApexClass.Id |
Label Class ID corresponds to this field. |
OverLimitAction | String | False |
Label Over Email Rate Limit Action corresponds to this field. | |
FunctionInactiveAction | String | False |
Label Deactivated Email Service Action corresponds to this field. | |
AddressInactiveAction | String | False |
Label Deactivated Email Address Action corresponds to this field. | |
AuthenticationFailureAction | String | False |
Label Unauthenticated Sender Action corresponds to this field. | |
AuthorizationFailureAction | String | False |
Label Unauthorized Sender Action corresponds to this field. | |
IsErrorRoutingEnabled | Boolean | False |
Label Enable Error Routing corresponds to this field. | |
ErrorRoutingAddress | String | False |
Label Route Error Emails to This Email Address corresponds to this field. | |
IsTextAttachmentsAsBinary | Boolean | False |
Label Convert Text Attachments to Binary Attachments corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the EmailTemplate entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the EmailTemplate. | |
Name | String | False |
Label Email Template Name corresponds to this field. | |
DeveloperName | String | False |
Label Template Unique Name corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
FolderId | String | False |
Label Folder ID corresponds to this field. | |
BrandTemplateId | String | False |
Label Letterhead ID corresponds to this field. | |
TemplateStyle | String | False |
Label Style corresponds to this field. | |
IsActive | Boolean | False |
Label Available For Use corresponds to this field. | |
TemplateType | String | False |
Label Template Type corresponds to this field. | |
Encoding | String | False |
Label Encoding corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
Subject | String | False |
Label Subject corresponds to this field. | |
HtmlValue | String | False |
Label HTML Value corresponds to this field. | |
Body | String | False |
Label Email Body corresponds to this field. | |
TimesUsed | Int | True |
Label Times Used corresponds to this field. | |
LastUsedDate | Datetime | True |
Label Last Used Date corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
ApiVersion | Double | False |
Label API Version corresponds to this field. | |
Markup | String | False |
Label Markup corresponds to this field. |
This is a table representing the EntitySubscription entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the EntitySubscription. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
SubscriberId | String | False |
User.Id |
Label Subscriber ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the Event entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Event. | |
WhoId | String | False |
Label Contact/Lead ID corresponds to this field. | |
WhatId | String | False |
Label Opportunity/Account ID corresponds to this field. | |
Subject | String | False |
Label Subject corresponds to this field. | |
Location | String | False |
Label Location corresponds to this field. | |
IsAllDayEvent | Boolean | False |
Label All-Day Event corresponds to this field. | |
ActivityDateTime | Datetime | False |
Label Due Date Time corresponds to this field. | |
ActivityDate | Datetime | False |
Label Due Date Only corresponds to this field. | |
DurationInMinutes | Int | False |
Label Duration corresponds to this field. | |
StartDateTime | Datetime | False |
Label Start Date Time corresponds to this field. | |
EndDateTime | Datetime | False |
Label End Date Time corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
AccountId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
OwnerId | String | False |
User.Id |
Label Assigned To ID corresponds to this field. |
IsPrivate | Boolean | False |
Label Private corresponds to this field. | |
ShowAs | String | False |
Label Show Time As corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
IsChild | Boolean | True |
Label Is Child corresponds to this field. | |
IsGroupEvent | Boolean | True |
Label Is Group Event corresponds to this field. | |
GroupEventType | String | True |
Label Group Event Type corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsArchived | Boolean | True |
Label Archived corresponds to this field. | |
RecurrenceActivityId | String | True |
Event.Id |
Label Recurrence Activity ID corresponds to this field. |
IsRecurrence | Boolean | False |
Label Create Recurring Series of Events corresponds to this field. | |
RecurrenceStartDateTime | Datetime | False |
Label Start Date corresponds to this field. | |
RecurrenceEndDateOnly | Datetime | False |
Label End Date corresponds to this field. | |
RecurrenceTimeZoneSidKey | String | False |
Label Recurrence Time Zone corresponds to this field. | |
RecurrenceType | String | False |
Label Recurrence Type corresponds to this field. | |
RecurrenceInterval | Int | False |
Label Recurrence Interval corresponds to this field. | |
RecurrenceDayOfWeekMask | Int | False |
Label Recurrence Day of Week Mask corresponds to this field. | |
RecurrenceDayOfMonth | Int | False |
Label Recurrence Day of Month corresponds to this field. | |
RecurrenceInstance | String | False |
Label Recurrence Instance corresponds to this field. | |
RecurrenceMonthOfYear | String | False |
Label Recurrence Month of Year corresponds to this field. | |
ReminderDateTime | Datetime | False |
Label Reminder Date/Time corresponds to this field. | |
IsReminderSet | Boolean | False |
Label Reminder Set corresponds to this field. |
This is a table representing the EventFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the EventFeed. | |
ParentId | String | True |
Event.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the EventRelation entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the EventRelation. | |
RelationId | String | False |
Label Relation ID corresponds to this field. | |
EventId | String | False |
Event.Id |
Label Event ID corresponds to this field. |
Status | String | False |
Label Status corresponds to this field. | |
RespondedDate | Datetime | False |
Label Response Date corresponds to this field. | |
Response | String | False |
Label Response corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the FeedComment entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the FeedComment. | |
FeedItemId | String | False |
Label Feed Item ID corresponds to this field. | |
ParentId | String | True |
Label Parent ID corresponds to this field. | |
CreatedById | String | False |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | False |
Label Created Date corresponds to this field. | |
CommentBody | String | False |
Label Comment Body corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
InsertedById | String | True |
User.Id |
Label InsertedBy ID corresponds to this field. |
CommentType | String | False |
Label Comment Type corresponds to this field. | |
RelatedRecordId | String | False |
Label Related Record ID corresponds to this field. |
This is a table representing the FeedItem entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the FeedItem. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
Type | String | False |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | False |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | False |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | False |
Label Title corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
LinkUrl | String | False |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | False |
Label Related Record ID corresponds to this field. | |
ContentData | String | False |
Label Content Data corresponds to this field. | |
ContentFileName | String | False |
Label Content File Name corresponds to this field. | |
ContentDescription | String | False |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the FeedPollChoice entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the FeedPollChoice. | |
FeedItemId | String | True |
Label Feed Item ID corresponds to this field. | |
Position | Int | True |
Label Position corresponds to this field. | |
ChoiceBody | String | True |
Label ChoiceBody corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the FeedPollVote entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the FeedPollVote. | |
FeedItemId | String | True |
Label Feed Item ID corresponds to this field. | |
ChoiceId | String | True |
Label Feed Poll Choice ID corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the FieldPermissions entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the FieldPermissions. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
SobjectType | String | False |
Label Sobject Type Name corresponds to this field. | |
Field | String | False |
Label Field Name corresponds to this field. | |
PermissionsEdit | Boolean | False |
Label Edit Field corresponds to this field. | |
PermissionsRead | Boolean | False |
Label Read Field corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the FiscalYearSettings entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the FiscalYearSettings. | |
PeriodId | String | True |
Period.Id |
Label Period ID corresponds to this field. |
StartDate | Datetime | True |
Label Start Date corresponds to this field. | |
EndDate | Datetime | True |
Label End Date corresponds to this field. | |
Name | String | True |
Label Name corresponds to this field. | |
IsStandardYear | Boolean | True |
Label Is Standard Year corresponds to this field. | |
YearType | String | True |
Label Year Type corresponds to this field. | |
QuarterLabelScheme | String | True |
Label Quarter Name Scheme corresponds to this field. | |
PeriodLabelScheme | String | True |
Label Period Name Scheme corresponds to this field. | |
WeekLabelScheme | String | True |
Label Week Name Scheme corresponds to this field. | |
QuarterPrefix | String | True |
Label Quarter Prefix corresponds to this field. | |
PeriodPrefix | String | True |
Label Period Prefix corresponds to this field. | |
WeekStartDay | Int | True |
Label Week Start Day corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Folder entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Folder. | |
Name | String | False |
Label Name corresponds to this field. | |
DeveloperName | String | False |
Label Folder Unique Name corresponds to this field. | |
AccessType | String | False |
Label Access Type corresponds to this field. | |
IsReadonly | Boolean | False |
Label Read Only corresponds to this field. | |
Type | String | False |
Label Type corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Group entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Group. | |
Name | String | False |
Label Name corresponds to this field. | |
DeveloperName | String | False |
Label Developer Name corresponds to this field. | |
RelatedId | String | True |
Label Related ID corresponds to this field. | |
Type | String | False |
Label Type corresponds to this field. | |
String | False |
Label Email corresponds to this field. | ||
OwnerId | String | True |
Label Owner ID corresponds to this field. | |
DoesSendEmailToMembers | Boolean | False |
Label Send Email to Members corresponds to this field. | |
DoesIncludeBosses | Boolean | False |
Label Include Bosses corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the GroupMember entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the GroupMember. | |
GroupId | String | False |
Group.Id |
Label Group ID corresponds to this field. |
UserOrGroupId | String | False |
Label User/Group ID corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the HashtagDefinition entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the HashtagDefinition. | |
NameNorm | String | True |
Label Normalized Hashtag Text corresponds to this field. | |
Name | String | True |
Label Hashtag Text corresponds to this field. | |
HashtagCount | Int | True |
Label Hashtag Count corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Holiday entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Holiday. | |
Name | String | False |
Label Holiday Name corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
IsAllDay | Boolean | False |
Label All Day corresponds to this field. | |
ActivityDate | Datetime | False |
Label Holiday Date corresponds to this field. | |
StartTimeInMinutes | Int | False |
Label Start Time In Minutes From Midnight corresponds to this field. | |
EndTimeInMinutes | Int | False |
Label End Time In Minutes From Midnight corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsRecurrence | Boolean | False |
Label Recurring Holiday corresponds to this field. | |
RecurrenceStartDate | Datetime | False |
Label Start Date corresponds to this field. | |
RecurrenceEndDateOnly | Datetime | False |
Label End Date corresponds to this field. | |
RecurrenceType | String | False |
Label Recurrence Type corresponds to this field. | |
RecurrenceInterval | Int | False |
Label Recurrence Interval corresponds to this field. | |
RecurrenceDayOfWeekMask | Int | False |
Label Recurrence Day of Week Mask corresponds to this field. | |
RecurrenceDayOfMonth | Int | False |
Label Recurrence Day of Month corresponds to this field. | |
RecurrenceInstance | String | False |
Label Recurrence Instance corresponds to this field. | |
RecurrenceMonthOfYear | String | False |
Label Recurrence Month of Year corresponds to this field. |
This is a table representing the Lead entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Lead. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
MasterRecordId | String | True |
Lead.Id |
Label Master Record ID corresponds to this field. |
LastName | String | False |
Label Last Name corresponds to this field. | |
FirstName | String | False |
Label First Name corresponds to this field. | |
Salutation | String | False |
Label Salutation corresponds to this field. | |
Name | String | True |
Label Full Name corresponds to this field. | |
Title | String | False |
Label Title corresponds to this field. | |
Company | String | False |
Label Company corresponds to this field. | |
Street | String | False |
Label Street corresponds to this field. | |
City | String | False |
Label City corresponds to this field. | |
State | String | False |
Label State/Province corresponds to this field. | |
PostalCode | String | False |
Label Zip/Postal Code corresponds to this field. | |
Country | String | False |
Label Country corresponds to this field. | |
Latitude | Double | False |
Label Latitude corresponds to this field. | |
Longitude | Double | False |
Label Longitude corresponds to this field. | |
Phone | String | False |
Label Phone corresponds to this field. | |
MobilePhone | String | False |
Label Mobile Phone corresponds to this field. | |
Fax | String | False |
Label Fax corresponds to this field. | |
String | False |
Label Email corresponds to this field. | ||
Website | String | False |
Label Website corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
LeadSource | String | False |
Label Lead Source corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
Industry | String | False |
Label Industry corresponds to this field. | |
Rating | String | False |
Label Rating corresponds to this field. | |
AnnualRevenue | Double | False |
Label Annual Revenue corresponds to this field. | |
NumberOfEmployees | Int | False |
Label Employees corresponds to this field. | |
OwnerId | String | False |
Label Owner ID corresponds to this field. | |
IsConverted | Boolean | False |
Label Converted corresponds to this field. | |
ConvertedDate | Datetime | True |
Label Converted Date corresponds to this field. | |
ConvertedAccountId | String | True |
Account.Id |
Label Converted Account ID corresponds to this field. |
ConvertedContactId | String | True |
Contact.Id |
Label Converted Contact ID corresponds to this field. |
ConvertedOpportunityId | String | True |
Opportunity.Id |
Label Converted Opportunity ID corresponds to this field. |
IsUnreadByOwner | Boolean | False |
Label Unread By Owner corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastActivityDate | Datetime | True |
Label Last Activity corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
Jigsaw | String | False |
Label Data.com Key corresponds to this field. | |
JigsawContactId | String | True |
Label Jigsaw Contact ID corresponds to this field. | |
EmailBouncedReason | String | True |
Label Email Bounced Reason corresponds to this field. | |
EmailBouncedDate | Datetime | True |
Label Email Bounced Date corresponds to this field. | |
SICCode__c | String | False |
Label SIC Code corresponds to this field. | |
Primary__c | String | False |
Label Primary corresponds to this field. | |
NumberofLocations__c | Double | False |
Label Number of Locations corresponds to this field. | |
ProductInterest__c | String | False |
Label Product Interest corresponds to this field. | |
CurrentGenerators__c | String | False |
Label Current Generator(s) corresponds to this field. | |
New_Text_Field__c | String | False |
Label New Text Field corresponds to this field. | |
External_Id_Field__c | String | False |
Label External Id Field corresponds to this field. | |
External_Id_2__c | String | False |
Label External_Id_2 corresponds to this field. | |
AutoNumberTest__c | String | True |
Label AutoNumberTest corresponds to this field. | |
Formula__c | Datetime | True |
Label Formula corresponds to this field. |
This is a table representing the LeadFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the LeadFeed. | |
ParentId | String | True |
Lead.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the LeadHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the LeadHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LeadId | String | True |
Lead.Id |
Label Lead ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the LeadStatus entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the LeadStatus. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | True |
Label Is Default corresponds to this field. | |
IsConverted | Boolean | True |
Label Is Converted corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the LoginHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the LoginHistory. | |
UserId | String | True |
Label User ID corresponds to this field. | |
LoginTime | Datetime | True |
Label Login Time corresponds to this field. | |
LoginType | String | True |
Label Login Type corresponds to this field. | |
SourceIp | String | True |
Label Source IP corresponds to this field. | |
LoginUrl | String | True |
Label Login URL corresponds to this field. | |
Browser | String | True |
Label Browser corresponds to this field. | |
Platform | String | True |
Label Platform corresponds to this field. | |
Status | String | True |
Label Status corresponds to this field. | |
Application | String | True |
Label Application corresponds to this field. | |
ClientVersion | String | True |
Label Client Version corresponds to this field. | |
ApiType | String | True |
Label API Type corresponds to this field. | |
ApiVersion | String | True |
Label API Version corresponds to this field. |
This is a table representing the LoginIp entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the LoginIp. | |
UsersId | String | True |
User.Id |
Label User ID corresponds to this field. |
SourceIp | String | True |
Label Source IP corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsAuthenticated | Boolean | True |
Label IsAuthenticated corresponds to this field. | |
ChallengeSentDate | Datetime | True |
Label Challenge SentDate corresponds to this field. | |
ChallengeMethod | String | True |
Label Challenge Method corresponds to this field. |
This is a table representing the MailmergeTemplate entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the MailmergeTemplate. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
Filename | String | False |
Label File corresponds to this field. | |
BodyLength | Int | True |
Label Body Length corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
LastUsedDate | Datetime | True |
Label Last Used Date corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the MobileDeviceRegistrar entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the MobileDeviceRegistrar. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
DeveloperName | String | False |
Label Name corresponds to this field. | |
Language | String | False |
Label Master Language corresponds to this field. | |
MasterLabel | String | False |
Label Label corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Provider | String | False |
Label Provider corresponds to this field. | |
MdmProviderEnrollEndpoint | String | False |
Label Mdm Provider Enroll Endpoint corresponds to this field. | |
MdmProviderPushAppEndpoint | String | False |
Label Mdm Provider Push App Endpoint corresponds to this field. | |
MdmProviderApiAccessToken | String | False |
Label Mdm Provider Api Access Token corresponds to this field. | |
MdmProviderApiUsername | String | False |
Label Mdm Provider Api Username corresponds to this field. | |
MdmProviderApiPassword | String | False |
Label Mdm Provider Api Password corresponds to this field. |
This is a table representing the Note entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Note. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
Title | String | False |
Label Title corresponds to this field. | |
IsPrivate | Boolean | False |
Label Private corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ObjectPermissions entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ObjectPermissions. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
SobjectType | String | False |
Label Sobject Type Name corresponds to this field. | |
PermissionsCreate | Boolean | False |
Label Create Records corresponds to this field. | |
PermissionsRead | Boolean | False |
Label Read Records corresponds to this field. | |
PermissionsEdit | Boolean | False |
Label Edit Records corresponds to this field. | |
PermissionsDelete | Boolean | False |
Label Delete Records corresponds to this field. | |
PermissionsViewAllRecords | Boolean | False |
Label Read All Records corresponds to this field. | |
PermissionsModifyAllRecords | Boolean | False |
Label Edit All Records corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Opportunity entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Opportunity. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
AccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
IsPrivate | Boolean | False |
Label Private corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
StageName | String | False |
Label Stage corresponds to this field. | |
Amount | Double | False |
Label Amount corresponds to this field. | |
Probability | Double | False |
Label Probability (%) corresponds to this field. | |
ExpectedRevenue | Double | True |
Label Expected Amount corresponds to this field. | |
TotalOpportunityQuantity | Double | False |
Label Quantity corresponds to this field. | |
CloseDate | Datetime | False |
Label Close Date corresponds to this field. | |
Type | String | False |
Label Opportunity Type corresponds to this field. | |
NextStep | String | False |
Label Next Step corresponds to this field. | |
LeadSource | String | False |
Label Lead Source corresponds to this field. | |
IsClosed | Boolean | True |
Label Closed corresponds to this field. | |
IsWon | Boolean | True |
Label Won corresponds to this field. | |
ForecastCategory | String | True |
Label Forecast Category corresponds to this field. | |
ForecastCategoryName | String | False |
Label Forecast Category corresponds to this field. | |
CampaignId | String | False |
Campaign.Id |
Label Campaign ID corresponds to this field. |
HasOpportunityLineItem | Boolean | True |
Label Has Line Item corresponds to this field. | |
Pricebook2Id | String | False |
Pricebook2.Id |
Label Price Book ID corresponds to this field. |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastActivityDate | Datetime | True |
Label Last Activity corresponds to this field. | |
FiscalQuarter | Int | True |
Label Fiscal Quarter corresponds to this field. | |
FiscalYear | Int | True |
Label Fiscal Year corresponds to this field. | |
Fiscal | String | True |
Label Fiscal Period corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
SyncedQuoteId | String | False |
Quote.Id |
Label Quote ID corresponds to this field. |
DeliveryInstallationStatus__c | String | False |
Label Delivery/Installation Status corresponds to this field. | |
CurrentGenerators__c | String | False |
Label Current Generator(s) corresponds to this field. | |
TrackingNumber__c | String | False |
Label Tracking Number corresponds to this field. | |
MainCompetitors__c | String | False |
Label Main Competitor(s) corresponds to this field. | |
OrderNumber__c | String | False |
Label Order Number corresponds to this field. | |
SomeNumber__c | Double | False |
Label SomeNumber corresponds to this field. | |
ZeroDecimal__c | Double | False |
Label ZeroDecimal corresponds to this field. | |
AutoNumber__c | String | True |
Label AutoNumber corresponds to this field. | |
FloatTest__c | Double | False |
Label FloatTest corresponds to this field. | |
Don_t_Test__c | String | False |
Label Don?t_Test corresponds to this field. |
This is a table representing the OpportunityCompetitor entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityCompetitor. | |
OpportunityId | String | False |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
CompetitorName | String | False |
Label Competitor Name corresponds to this field. | |
Strengths | String | False |
Label Strengths corresponds to this field. | |
Weaknesses | String | False |
Label Weaknesses corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the OpportunityContactRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityContactRole. | |
OpportunityId | String | False |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
Role | String | False |
Label Role corresponds to this field. | |
IsPrimary | Boolean | False |
Label Primary corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the OpportunityFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityFeed. | |
ParentId | String | True |
Opportunity.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the OpportunityFieldHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityFieldHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
OpportunityId | String | True |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the OpportunityHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityHistory. | |
OpportunityId | String | True |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
StageName | String | True |
Label Stage Name corresponds to this field. | |
Amount | Double | True |
Label Amount corresponds to this field. | |
ExpectedRevenue | Double | True |
Label Expected Revenue corresponds to this field. | |
CloseDate | Datetime | True |
Label Close Date corresponds to this field. | |
Probability | Double | True |
Label Probability corresponds to this field. | |
ForecastCategory | String | True |
Label To ForecastCategory corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the OpportunityLineItem entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityLineItem. | |
OpportunityId | String | False |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
PricebookEntryId | String | False |
Label Price Book Entry ID corresponds to this field. | |
Quantity | Double | False |
Label Quantity corresponds to this field. | |
TotalPrice | Double | False |
Label Total Price corresponds to this field. | |
UnitPrice | Double | False |
Label Sales Price corresponds to this field. | |
ListPrice | Double | True |
Label List Price corresponds to this field. | |
ServiceDate | Datetime | False |
Label Date corresponds to this field. | |
Description | String | False |
Label Line Description corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the OpportunityPartner entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityPartner. | |
OpportunityId | String | True |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
AccountToId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
Role | String | True |
Label Role corresponds to this field. | |
IsPrimary | Boolean | True |
Label Primary corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ReversePartnerId | String | True |
Label Reverse Partner ID corresponds to this field. |
This is a table representing the OpportunityStage entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OpportunityStage. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
IsActive | Boolean | True |
Label Is Active corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsClosed | Boolean | True |
Label Closed corresponds to this field. | |
IsWon | Boolean | True |
Label Won corresponds to this field. | |
ForecastCategory | String | True |
Label Forecast Category corresponds to this field. | |
ForecastCategoryName | String | True |
Label Forecast Category Name corresponds to this field. | |
DefaultProbability | Double | True |
Label Probability (%) corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Organization entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Organization. | |
Name | String | True |
Label Name corresponds to this field. | |
Division | String | True |
Label Division corresponds to this field. | |
Street | String | True |
Label Street corresponds to this field. | |
City | String | True |
Label City corresponds to this field. | |
State | String | True |
Label State/Province corresponds to this field. | |
PostalCode | String | True |
Label Zip/Postal Code corresponds to this field. | |
Country | String | True |
Label Country corresponds to this field. | |
Latitude | Double | True |
Label Latitude corresponds to this field. | |
Longitude | Double | True |
Label Longitude corresponds to this field. | |
Phone | String | True |
Label Phone corresponds to this field. | |
Fax | String | True |
Label Fax corresponds to this field. | |
PrimaryContact | String | True |
Label Primary Contact corresponds to this field. | |
DefaultLocaleSidKey | String | True |
Label Locale corresponds to this field. | |
LanguageLocaleKey | String | True |
Label Language corresponds to this field. | |
ReceivesInfoEmails | Boolean | True |
Label Info Emails corresponds to this field. | |
ReceivesAdminInfoEmails | Boolean | True |
Label Info Emails Admin corresponds to this field. | |
PreferencesRequireOpportunityProducts | Boolean | True |
Label RequireOpportunityProducts corresponds to this field. | |
FiscalYearStartMonth | Int | True |
Label Fiscal Year Starts In corresponds to this field. | |
UsesStartDateAsFiscalYearName | Boolean | True |
Label Fiscal Year Name by Start corresponds to this field. | |
DefaultAccountAccess | String | True |
Label Default Account Access corresponds to this field. | |
DefaultContactAccess | String | True |
Label Default Contact Access corresponds to this field. | |
DefaultOpportunityAccess | String | True |
Label Default Opportunity Access corresponds to this field. | |
DefaultLeadAccess | String | True |
Label Default Lead Access corresponds to this field. | |
DefaultCaseAccess | String | True |
Label Default Case Access corresponds to this field. | |
DefaultCalendarAccess | String | True |
Label Default Calendar Access corresponds to this field. | |
DefaultPricebookAccess | String | True |
Label Default Price Book Access corresponds to this field. | |
DefaultCampaignAccess | String | True |
Label Default Campaign Access corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
ComplianceBccEmail | String | True |
Label Compliance BCC Email corresponds to this field. | |
UiSkin | String | True |
Label UI Skin corresponds to this field. | |
TrialExpirationDate | Datetime | True |
Label Trial Expiration Date corresponds to this field. | |
OrganizationType | String | True |
Label Edition corresponds to this field. | |
WebToCaseDefaultOrigin | String | True |
Label Web to Cases Default Origin corresponds to this field. | |
MonthlyPageViewsUsed | Int | True |
Label Monthly Page Views Used corresponds to this field. | |
MonthlyPageViewsEntitlement | Int | True |
Label Monthly Page Views Allowed corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
This is a table representing the OrgWideEmailAddress entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the OrgWideEmailAddress. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Address | String | False |
Label Email Address corresponds to this field. | |
DisplayName | String | False |
Label Display Name corresponds to this field. | |
IsAllowAllProfiles | Boolean | False |
Label Allow All Profiles corresponds to this field. |
This is a table representing the Partner entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Partner. | |
OpportunityId | String | False |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
AccountFromId | String | False |
Account.Id |
Label Account From ID corresponds to this field. |
AccountToId | String | False |
Account.Id |
Label Account To ID corresponds to this field. |
Role | String | False |
Label Role corresponds to this field. | |
IsPrimary | Boolean | False |
Label Primary corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ReversePartnerId | String | True |
Partner.Id |
Label Reverse Partner ID corresponds to this field. |
This is a table representing the PartnerRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PartnerRole. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
ReverseRole | String | True |
Label Reverse Role corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Period entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Period. | |
FiscalYearSettingsId | String | True |
Label Fiscal Year Settings ID corresponds to this field. | |
Type | String | True |
Label Type corresponds to this field. | |
StartDate | Datetime | True |
Label Start Date corresponds to this field. | |
EndDate | Datetime | True |
Label End Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsForecastPeriod | Boolean | True |
Label Is Forecast Period corresponds to this field. | |
QuarterLabel | String | True |
Label Quarter Name corresponds to this field. | |
PeriodLabel | String | True |
Label Period Name corresponds to this field. | |
Number | Int | True |
Label Number corresponds to this field. |
This is a table representing the PermissionSet entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PermissionSet. | |
Name | String | False |
Label Permission Set Name corresponds to this field. | |
Label | String | False |
Label Permission Set Label corresponds to this field. | |
UserLicenseId | String | False |
UserLicense.Id |
Label User License ID corresponds to this field. |
ProfileId | String | True |
Profile.Id |
Label Profile ID corresponds to this field. |
IsOwnedByProfile | Boolean | True |
Label Is Owned By Profile corresponds to this field. | |
PermissionsEmailSingle | Boolean | False |
Label Send Email corresponds to this field. | |
PermissionsEmailMass | Boolean | False |
Label Mass Email corresponds to this field. | |
PermissionsEditTask | Boolean | False |
Label Edit Tasks corresponds to this field. | |
PermissionsEditEvent | Boolean | False |
Label Edit Events corresponds to this field. | |
PermissionsExportReport | Boolean | False |
Label Export Reports corresponds to this field. | |
PermissionsImportPersonal | Boolean | False |
Label Import Personal Contacts corresponds to this field. | |
PermissionsManageUsers | Boolean | False |
Label Manage Users corresponds to this field. | |
PermissionsEditPublicTemplates | Boolean | False |
Label Manage Public Templates corresponds to this field. | |
PermissionsModifyAllData | Boolean | False |
Label Modify All Data corresponds to this field. | |
PermissionsManageCases | Boolean | False |
Label Manage Cases corresponds to this field. | |
PermissionsEditKnowledge | Boolean | False |
Label Manage Articles corresponds to this field. | |
PermissionsManageKnowledge | Boolean | False |
Label Manage Salesforce Knowledge corresponds to this field. | |
PermissionsManageSolutions | Boolean | False |
Label Manage Published Solutions corresponds to this field. | |
PermissionsCustomizeApplication | Boolean | False |
Label Customize Application corresponds to this field. | |
PermissionsEditReadonlyFields | Boolean | False |
Label Edit Read Only Fields corresponds to this field. | |
PermissionsRunReports | Boolean | False |
Label Run Reports corresponds to this field. | |
PermissionsViewSetup | Boolean | False |
Label View Setup and Configuration corresponds to this field. | |
PermissionsTransferAnyEntity | Boolean | False |
Label Transfer Record corresponds to this field. | |
PermissionsNewReportBuilder | Boolean | False |
Label Report Builder corresponds to this field. | |
PermissionsManageSelfService | Boolean | False |
Label Manage Self-Service Portal corresponds to this field. | |
PermissionsManageCssUsers | Boolean | False |
Label Edit Self-Service Users corresponds to this field. | |
PermissionsActivateContract | Boolean | False |
Label Activate Contracts corresponds to this field. | |
PermissionsImportLeads | Boolean | False |
Label Import Leads corresponds to this field. | |
PermissionsManageLeads | Boolean | False |
Label Manage Leads corresponds to this field. | |
PermissionsTransferAnyLead | Boolean | False |
Label Transfer Leads corresponds to this field. | |
PermissionsViewAllData | Boolean | False |
Label View All Data corresponds to this field. | |
PermissionsEditPublicDocuments | Boolean | False |
Label Manage Public Documents corresponds to this field. | |
PermissionsEditBrandTemplates | Boolean | False |
Label Manage Letterheads corresponds to this field. | |
PermissionsEditHtmlTemplates | Boolean | False |
Label Edit HTML Templates corresponds to this field. | |
PermissionsChatterInternalUser | Boolean | False |
Label Chatter Internal User corresponds to this field. | |
PermissionsManageDashboards | Boolean | False |
Label Manage Dashboards corresponds to this field. | |
PermissionsDeleteActivatedContract | Boolean | False |
Label Delete Activated Contracts corresponds to this field. | |
PermissionsChatterInviteExternalUsers | Boolean | False |
Label Invite Customers To Chatter corresponds to this field. | |
PermissionsSendSitRequests | Boolean | False |
Label Send Stay-in-Touch Requests corresponds to this field. | |
PermissionsManageRemoteAccess | Boolean | False |
Label Manage Connected Apps corresponds to this field. | |
PermissionsCanUseNewDashboardBuilder | Boolean | False |
Label Drag-and-Drop Dashboard Builder corresponds to this field. | |
PermissionsManageCategories | Boolean | False |
Label Manage Categories corresponds to this field. | |
PermissionsConvertLeads | Boolean | False |
Label Convert Leads corresponds to this field. | |
PermissionsPasswordNeverExpires | Boolean | False |
Label Password Never Expires corresponds to this field. | |
PermissionsUseTeamReassignWizards | Boolean | False |
Label Use Team Reassignment Wizards corresponds to this field. | |
PermissionsInstallPackaging | Boolean | False |
Label Download AppExchange Packages corresponds to this field. | |
PermissionsPublishPackaging | Boolean | False |
Label Upload AppExchange Packages corresponds to this field. | |
PermissionsChatterOwnGroups | Boolean | False |
Label Create and Own New Chatter Groups corresponds to this field. | |
PermissionsEditOppLineItemUnitPrice | Boolean | False |
Label Edit Opportunity Product Sales Price corresponds to this field. | |
PermissionsCreatePackaging | Boolean | False |
Label Create AppExchange Packages corresponds to this field. | |
PermissionsBulkApiHardDelete | Boolean | False |
Label Bulk API Hard Delete corresponds to this field. | |
PermissionsSolutionImport | Boolean | False |
Label Import Solutions corresponds to this field. | |
PermissionsManageCallCenters | Boolean | False |
Label Manage Call Centers corresponds to this field. | |
PermissionsEditReports | Boolean | False |
Label Create and Customize Reports corresponds to this field. | |
PermissionsManageSynonyms | Boolean | False |
Label Manage Synonyms corresponds to this field. | |
PermissionsViewContent | Boolean | False |
Label View Content in Portals corresponds to this field. | |
PermissionsManageEmailClientConfig | Boolean | False |
Label Manage Email Client Configurations corresponds to this field. | |
PermissionsEnableNotifications | Boolean | False |
Label Send Outbound Messages corresponds to this field. | |
PermissionsManageDataIntegrations | Boolean | False |
Label Manage Data Integrations corresponds to this field. | |
PermissionsViewDataCategories | Boolean | False |
Label View Data Categories corresponds to this field. | |
PermissionsManageDataCategories | Boolean | False |
Label Manage Data Categories corresponds to this field. | |
PermissionsAuthorApex | Boolean | False |
Label Author Apex corresponds to this field. | |
PermissionsManageMobile | Boolean | False |
Label Manage Mobile Configurations corresponds to this field. | |
PermissionsApiEnabled | Boolean | False |
Label API Enabled corresponds to this field. | |
PermissionsManageCustomReportTypes | Boolean | False |
Label Manage Custom Report Types corresponds to this field. | |
PermissionsEditCaseComments | Boolean | False |
Label Edit Case Comments corresponds to this field. | |
PermissionsTransferAnyCase | Boolean | False |
Label Transfer Cases corresponds to this field. | |
PermissionsContentAdministrator | Boolean | False |
Label Manage Salesforce CRM Content corresponds to this field. | |
PermissionsCreateWorkspaces | Boolean | False |
Label Create Libraries corresponds to this field. | |
PermissionsManageContentPermissions | Boolean | False |
Label Manage Content Permissions corresponds to this field. | |
PermissionsManageContentProperties | Boolean | False |
Label Manage Content Properties corresponds to this field. | |
PermissionsManageContentTypes | Boolean | False |
Label Manage Content Types corresponds to this field. | |
PermissionsManageAnalyticSnapshots | Boolean | False |
Label Manage Analytic Snapshots corresponds to this field. | |
PermissionsScheduleReports | Boolean | False |
Label Schedule Reports corresponds to this field. | |
PermissionsManageBusinessHourHolidays | Boolean | False |
Label Manage Business Hours Holidays corresponds to this field. | |
PermissionsManageDynamicDashboards | Boolean | False |
Label Manage Dynamic Dashboards corresponds to this field. | |
PermissionsCustomSidebarOnAllPages | Boolean | False |
Label Show Custom Sidebar On All Pages corresponds to this field. | |
PermissionsManageInteraction | Boolean | False |
Label Manage Force.com Flow corresponds to this field. | |
PermissionsViewMyTeamsDashboards | Boolean | False |
Label View My Team's Dashboards corresponds to this field. | |
PermissionsModerateChatter | Boolean | False |
Label Moderate Chatter corresponds to this field. | |
PermissionsResetPasswords | Boolean | False |
Label Reset User Passwords and Unlock Users corresponds to this field. | |
PermissionsFlowUFLRequired | Boolean | False |
Label Require Force.com Flow User Feature License corresponds to this field. | |
PermissionsCanInsertFeedSystemFields | Boolean | False |
Label Insert System Field Values for Chatter Feeds corresponds to this field. | |
PermissionsManageKnowledgeImportExport | Boolean | False |
Label Manage Knowledge Article Import/Export corresponds to this field. | |
PermissionsEmailTemplateManagement | Boolean | False |
Label Manage Email Templates corresponds to this field. | |
PermissionsEmailAdministration | Boolean | False |
Label Email Administration corresponds to this field. | |
PermissionsManageChatterMessages | Boolean | False |
Label Manage Chatter Messages corresponds to this field. | |
PermissionsForceTwoFactor | Boolean | False |
Label Two-Factor Authentication for User Interface Logins corresponds to this field. | |
PermissionsManageNetworks | Boolean | False |
Label Create and Set Up Communities corresponds to this field. | |
PermissionsManageAuthProviders | Boolean | False |
Label Manage Auth. Providers corresponds to this field. | |
PermissionsRunFlow | Boolean | False |
Label Run Flows corresponds to this field. | |
PermissionsViewAllUsers | Boolean | False |
Label View All Users corresponds to this field. | |
PermissionsAllowUniversalSearch | Boolean | False |
Label Knowledge One corresponds to this field. | |
PermissionsConnectOrgToEnvironmentHub | Boolean | False |
Label Connect Organization to Environment Hub corresponds to this field. | |
PermissionsSalesConsole | Boolean | False |
Label Sales Console corresponds to this field. | |
PermissionsTwoFactorApi | Boolean | False |
Label Two-Factor Authentication for API Logins corresponds to this field. | |
PermissionsDeleteTopics | Boolean | False |
Label Delete Topics corresponds to this field. | |
PermissionsEditTopics | Boolean | False |
Label Edit Topics corresponds to this field. | |
PermissionsCreateTopics | Boolean | False |
Label Create Topics corresponds to this field. | |
PermissionsAssignTopics | Boolean | False |
Label Assign Topics corresponds to this field. | |
PermissionsIdentityEnabled | Boolean | False |
Label Use Identity Features corresponds to this field. | |
PermissionsIdentityConnect | Boolean | False |
Label Use Identity Connect corresponds to this field. | |
PermissionsAllowViewKnowledge | Boolean | False |
Label Allow View Knowledge corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. |
This is a table representing the PermissionSetAssignment entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PermissionSetAssignment. | |
PermissionSetId | String | False |
Label PermissionSet ID corresponds to this field. | |
AssigneeId | String | False |
User.Id |
Label Assignee ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label Date Assigned corresponds to this field. |
This is a table representing the PermissionSetLicense entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PermissionSetLicense. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
DeveloperName | String | True |
Label Developer Name corresponds to this field. | |
Language | String | True |
Label Master Language corresponds to this field. | |
MasterLabel | String | True |
Label Permission Set License Label corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
PermissionSetLicenseKey | String | True |
Label Permission Set License Key corresponds to this field. | |
TotalLicenses | Int | True |
Label Total Licenses corresponds to this field. | |
Status | String | True |
Label Status corresponds to this field. | |
ExpirationDate | Datetime | True |
Label Expiration Date corresponds to this field. | |
MaximumPermissionsEmailSingle | Boolean | True |
Label Send Email corresponds to this field. | |
MaximumPermissionsEmailMass | Boolean | True |
Label Mass Email corresponds to this field. | |
MaximumPermissionsEditTask | Boolean | True |
Label Edit Tasks corresponds to this field. | |
MaximumPermissionsEditEvent | Boolean | True |
Label Edit Events corresponds to this field. | |
MaximumPermissionsExportReport | Boolean | True |
Label Export Reports corresponds to this field. | |
MaximumPermissionsImportPersonal | Boolean | True |
Label Import Personal Contacts corresponds to this field. | |
MaximumPermissionsManageUsers | Boolean | True |
Label Manage Users corresponds to this field. | |
MaximumPermissionsEditPublicTemplates | Boolean | True |
Label Manage Public Templates corresponds to this field. | |
MaximumPermissionsModifyAllData | Boolean | True |
Label Modify All Data corresponds to this field. | |
MaximumPermissionsManageCases | Boolean | True |
Label Manage Cases corresponds to this field. | |
MaximumPermissionsEditKnowledge | Boolean | True |
Label Manage Articles corresponds to this field. | |
MaximumPermissionsManageKnowledge | Boolean | True |
Label Manage Salesforce Knowledge corresponds to this field. | |
MaximumPermissionsManageSolutions | Boolean | True |
Label Manage Published Solutions corresponds to this field. | |
MaximumPermissionsCustomizeApplication | Boolean | True |
Label Customize Application corresponds to this field. | |
MaximumPermissionsEditReadonlyFields | Boolean | True |
Label Edit Read Only Fields corresponds to this field. | |
MaximumPermissionsRunReports | Boolean | True |
Label Run Reports corresponds to this field. | |
MaximumPermissionsViewSetup | Boolean | True |
Label View Setup and Configuration corresponds to this field. | |
MaximumPermissionsTransferAnyEntity | Boolean | True |
Label Transfer Record corresponds to this field. | |
MaximumPermissionsNewReportBuilder | Boolean | True |
Label Report Builder corresponds to this field. | |
MaximumPermissionsManageSelfService | Boolean | True |
Label Manage Self-Service Portal corresponds to this field. | |
MaximumPermissionsManageCssUsers | Boolean | True |
Label Edit Self-Service Users corresponds to this field. | |
MaximumPermissionsActivateContract | Boolean | True |
Label Activate Contracts corresponds to this field. | |
MaximumPermissionsImportLeads | Boolean | True |
Label Import Leads corresponds to this field. | |
MaximumPermissionsManageLeads | Boolean | True |
Label Manage Leads corresponds to this field. | |
MaximumPermissionsTransferAnyLead | Boolean | True |
Label Transfer Leads corresponds to this field. | |
MaximumPermissionsViewAllData | Boolean | True |
Label View All Data corresponds to this field. | |
MaximumPermissionsEditPublicDocuments | Boolean | True |
Label Manage Public Documents corresponds to this field. | |
MaximumPermissionsEditBrandTemplates | Boolean | True |
Label Manage Letterheads corresponds to this field. | |
MaximumPermissionsEditHtmlTemplates | Boolean | True |
Label Edit HTML Templates corresponds to this field. | |
MaximumPermissionsChatterInternalUser | Boolean | True |
Label Chatter Internal User corresponds to this field. | |
MaximumPermissionsManageDashboards | Boolean | True |
Label Manage Dashboards corresponds to this field. | |
MaximumPermissionsDeleteActivatedContract | Boolean | True |
Label Delete Activated Contracts corresponds to this field. | |
MaximumPermissionsChatterInviteExternalUsers | Boolean | True |
Label Invite Customers To Chatter corresponds to this field. | |
MaximumPermissionsSendSitRequests | Boolean | True |
Label Send Stay-in-Touch Requests corresponds to this field. | |
MaximumPermissionsManageRemoteAccess | Boolean | True |
Label Manage Connected Apps corresponds to this field. | |
MaximumPermissionsCanUseNewDashboardBuilder | Boolean | True |
Label Drag-and-Drop Dashboard Builder corresponds to this field. | |
MaximumPermissionsManageCategories | Boolean | True |
Label Manage Categories corresponds to this field. | |
MaximumPermissionsConvertLeads | Boolean | True |
Label Convert Leads corresponds to this field. | |
MaximumPermissionsPasswordNeverExpires | Boolean | True |
Label Password Never Expires corresponds to this field. | |
MaximumPermissionsUseTeamReassignWizards | Boolean | True |
Label Use Team Reassignment Wizards corresponds to this field. | |
MaximumPermissionsInstallPackaging | Boolean | True |
Label Download AppExchange Packages corresponds to this field. | |
MaximumPermissionsPublishPackaging | Boolean | True |
Label Upload AppExchange Packages corresponds to this field. | |
MaximumPermissionsChatterOwnGroups | Boolean | True |
Label Create and Own New Chatter Groups corresponds to this field. | |
MaximumPermissionsEditOppLineItemUnitPrice | Boolean | True |
Label Edit Opportunity Product Sales Price corresponds to this field. | |
MaximumPermissionsCreatePackaging | Boolean | True |
Label Create AppExchange Packages corresponds to this field. | |
MaximumPermissionsBulkApiHardDelete | Boolean | True |
Label Bulk API Hard Delete corresponds to this field. | |
MaximumPermissionsSolutionImport | Boolean | True |
Label Import Solutions corresponds to this field. | |
MaximumPermissionsManageCallCenters | Boolean | True |
Label Manage Call Centers corresponds to this field. | |
MaximumPermissionsEditReports | Boolean | True |
Label Create and Customize Reports corresponds to this field. | |
MaximumPermissionsManageSynonyms | Boolean | True |
Label Manage Synonyms corresponds to this field. | |
MaximumPermissionsViewContent | Boolean | True |
Label View Content in Portals corresponds to this field. | |
MaximumPermissionsManageEmailClientConfig | Boolean | True |
Label Manage Email Client Configurations corresponds to this field. | |
MaximumPermissionsEnableNotifications | Boolean | True |
Label Send Outbound Messages corresponds to this field. | |
MaximumPermissionsManageDataIntegrations | Boolean | True |
Label Manage Data Integrations corresponds to this field. | |
MaximumPermissionsViewDataCategories | Boolean | True |
Label View Data Categories corresponds to this field. | |
MaximumPermissionsManageDataCategories | Boolean | True |
Label Manage Data Categories corresponds to this field. | |
MaximumPermissionsAuthorApex | Boolean | True |
Label Author Apex corresponds to this field. | |
MaximumPermissionsManageMobile | Boolean | True |
Label Manage Mobile Configurations corresponds to this field. | |
MaximumPermissionsApiEnabled | Boolean | True |
Label API Enabled corresponds to this field. | |
MaximumPermissionsManageCustomReportTypes | Boolean | True |
Label Manage Custom Report Types corresponds to this field. | |
MaximumPermissionsEditCaseComments | Boolean | True |
Label Edit Case Comments corresponds to this field. | |
MaximumPermissionsTransferAnyCase | Boolean | True |
Label Transfer Cases corresponds to this field. | |
MaximumPermissionsContentAdministrator | Boolean | True |
Label Manage Salesforce CRM Content corresponds to this field. | |
MaximumPermissionsCreateWorkspaces | Boolean | True |
Label Create Libraries corresponds to this field. | |
MaximumPermissionsManageContentPermissions | Boolean | True |
Label Manage Content Permissions corresponds to this field. | |
MaximumPermissionsManageContentProperties | Boolean | True |
Label Manage Content Properties corresponds to this field. | |
MaximumPermissionsManageContentTypes | Boolean | True |
Label Manage Content Types corresponds to this field. | |
MaximumPermissionsManageAnalyticSnapshots | Boolean | True |
Label Manage Analytic Snapshots corresponds to this field. | |
MaximumPermissionsScheduleReports | Boolean | True |
Label Schedule Reports corresponds to this field. | |
MaximumPermissionsManageBusinessHourHolidays | Boolean | True |
Label Manage Business Hours Holidays corresponds to this field. | |
MaximumPermissionsManageDynamicDashboards | Boolean | True |
Label Manage Dynamic Dashboards corresponds to this field. | |
MaximumPermissionsCustomSidebarOnAllPages | Boolean | True |
Label Show Custom Sidebar On All Pages corresponds to this field. | |
MaximumPermissionsManageInteraction | Boolean | True |
Label Manage Force.com Flow corresponds to this field. | |
MaximumPermissionsViewMyTeamsDashboards | Boolean | True |
Label View My Team's Dashboards corresponds to this field. | |
MaximumPermissionsModerateChatter | Boolean | True |
Label Moderate Chatter corresponds to this field. | |
MaximumPermissionsResetPasswords | Boolean | True |
Label Reset User Passwords and Unlock Users corresponds to this field. | |
MaximumPermissionsFlowUFLRequired | Boolean | True |
Label Require Force.com Flow User Feature License corresponds to this field. | |
MaximumPermissionsCanInsertFeedSystemFields | Boolean | True |
Label Insert System Field Values for Chatter Feeds corresponds to this field. | |
MaximumPermissionsManageKnowledgeImportExport | Boolean | True |
Label Manage Knowledge Article Import/Export corresponds to this field. | |
MaximumPermissionsEmailTemplateManagement | Boolean | True |
Label Manage Email Templates corresponds to this field. | |
MaximumPermissionsEmailAdministration | Boolean | True |
Label Email Administration corresponds to this field. | |
MaximumPermissionsManageChatterMessages | Boolean | True |
Label Manage Chatter Messages corresponds to this field. | |
MaximumPermissionsForceTwoFactor | Boolean | True |
Label Two-Factor Authentication for User Interface Logins corresponds to this field. | |
MaximumPermissionsManageNetworks | Boolean | True |
Label Create and Set Up Communities corresponds to this field. | |
MaximumPermissionsManageAuthProviders | Boolean | True |
Label Manage Auth. Providers corresponds to this field. | |
MaximumPermissionsRunFlow | Boolean | True |
Label Run Flows corresponds to this field. | |
MaximumPermissionsViewAllUsers | Boolean | True |
Label View All Users corresponds to this field. | |
MaximumPermissionsAllowUniversalSearch | Boolean | True |
Label Knowledge One corresponds to this field. | |
MaximumPermissionsConnectOrgToEnvironmentHub | Boolean | True |
Label Connect Organization to Environment Hub corresponds to this field. | |
MaximumPermissionsSalesConsole | Boolean | True |
Label Sales Console corresponds to this field. | |
MaximumPermissionsTwoFactorApi | Boolean | True |
Label Two-Factor Authentication for API Logins corresponds to this field. | |
MaximumPermissionsDeleteTopics | Boolean | True |
Label Delete Topics corresponds to this field. | |
MaximumPermissionsEditTopics | Boolean | True |
Label Edit Topics corresponds to this field. | |
MaximumPermissionsCreateTopics | Boolean | True |
Label Create Topics corresponds to this field. | |
MaximumPermissionsAssignTopics | Boolean | True |
Label Assign Topics corresponds to this field. | |
MaximumPermissionsIdentityEnabled | Boolean | True |
Label Use Identity Features corresponds to this field. | |
MaximumPermissionsIdentityConnect | Boolean | True |
Label Use Identity Connect corresponds to this field. | |
MaximumPermissionsAllowViewKnowledge | Boolean | True |
Label Allow View Knowledge corresponds to this field. | |
UsedLicenses | Int | True |
Label Used Licenses corresponds to this field. |
This is a table representing the PermissionSetLicenseAssign entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PermissionSetLicenseAssign. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label Date Assigned corresponds to this field. | |
PermissionSetLicenseId | String | False |
Label Permission Set License ID corresponds to this field. | |
AssigneeId | String | False |
User.Id |
Label User ID corresponds to this field. |
This is a table representing the Pricebook2 entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Pricebook2. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | False |
Label Price Book Name corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
IsStandard | Boolean | True |
Label Is Standard Price Book corresponds to this field. | |
Factory_Code__c | String | False |
Label Factory_Code corresponds to this field. | |
Old_Factory_Codes__c | String | False |
Label Old_Factory_Codes corresponds to this field. |
This is a table representing the Pricebook2History entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Pricebook2History. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Pricebook2Id | String | True |
Pricebook2.Id |
Label Price Book ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the PricebookEntry entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PricebookEntry. | |
Name | String | True |
Label Product Name corresponds to this field. | |
Pricebook2Id | String | False |
Pricebook2.Id |
Label Price Book ID corresponds to this field. |
Product2Id | String | False |
Product2.Id |
Label Product ID corresponds to this field. |
UnitPrice | Double | False |
Label List Price corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
UseStandardPrice | Boolean | False |
Label Use Standard Price corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
ProductCode | String | True |
Label Product Code corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. |
This is a table representing the ProcessDefinition entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ProcessDefinition. | |
Name | String | True |
Label Name corresponds to this field. | |
DeveloperName | String | True |
Label Unique Name corresponds to this field. | |
Type | String | True |
Label Process Definition Type corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
TableEnumOrId | String | True |
Label Custom Object Definition ID corresponds to this field. | |
LockType | String | True |
Label Lock Type corresponds to this field. | |
State | String | True |
Label State corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ProcessInstance entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ProcessInstance. | |
ProcessDefinitionId | String | True |
Label Approval Process ID corresponds to this field. | |
TargetObjectId | String | True |
Label Target Object ID corresponds to this field. | |
Status | String | True |
Label Status corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ProcessInstanceStep entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ProcessInstanceStep. | |
ProcessInstanceId | String | True |
Label Process Instance ID corresponds to this field. | |
StepStatus | String | True |
Label Step Status corresponds to this field. | |
OriginalActorId | String | True |
Label Original Actor ID corresponds to this field. | |
ActorId | String | True |
Label Actor ID corresponds to this field. | |
Comments | String | True |
Label Comments corresponds to this field. | |
StepNodeId | String | True |
ProcessNode.Id |
Label Process Node ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ProcessInstanceWorkitem entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ProcessInstanceWorkitem. | |
ProcessInstanceId | String | True |
Label Process Instance ID corresponds to this field. | |
OriginalActorId | String | True |
Label Original Actor ID corresponds to this field. | |
ActorId | String | True |
Label Actor ID corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the ProcessNode entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ProcessNode. | |
Name | String | True |
Label Name corresponds to this field. | |
DeveloperName | String | True |
Label Unique Name corresponds to this field. | |
ProcessDefinitionId | String | True |
Label Approval Process ID corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Product2 entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Product2. | |
Name | String | False |
Label Product Name corresponds to this field. | |
ProductCode | String | False |
Label Product Code corresponds to this field. | |
Description | String | False |
Label Product Description corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Family | String | False |
Label Product Family corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Old_Factory_Codes__c | String | False |
Label Old_Factory_Codes corresponds to this field. | |
TextLong2__c | String | False |
Label TextLong2 corresponds to this field. | |
Factory_Code__c | String | False |
Label Factory_Code corresponds to this field. |
This is a table representing the Product2Feed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Product2Feed. | |
ParentId | String | True |
Product2.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the Profile entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Profile. | |
Name | String | True |
Label Name corresponds to this field. | |
PermissionsEmailSingle | Boolean | True |
Label Send Email corresponds to this field. | |
PermissionsEmailMass | Boolean | True |
Label Mass Email corresponds to this field. | |
PermissionsEditTask | Boolean | True |
Label Edit Tasks corresponds to this field. | |
PermissionsEditEvent | Boolean | True |
Label Edit Events corresponds to this field. | |
PermissionsExportReport | Boolean | True |
Label Export Reports corresponds to this field. | |
PermissionsImportPersonal | Boolean | True |
Label Import Personal Contacts corresponds to this field. | |
PermissionsManageUsers | Boolean | True |
Label Manage Users corresponds to this field. | |
PermissionsEditPublicTemplates | Boolean | True |
Label Manage Public Templates corresponds to this field. | |
PermissionsModifyAllData | Boolean | True |
Label Modify All Data corresponds to this field. | |
PermissionsManageCases | Boolean | True |
Label Manage Cases corresponds to this field. | |
PermissionsEditKnowledge | Boolean | True |
Label Manage Articles corresponds to this field. | |
PermissionsManageKnowledge | Boolean | True |
Label Manage Salesforce Knowledge corresponds to this field. | |
PermissionsManageSolutions | Boolean | True |
Label Manage Published Solutions corresponds to this field. | |
PermissionsCustomizeApplication | Boolean | True |
Label Customize Application corresponds to this field. | |
PermissionsEditReadonlyFields | Boolean | True |
Label Edit Read Only Fields corresponds to this field. | |
PermissionsRunReports | Boolean | True |
Label Run Reports corresponds to this field. | |
PermissionsViewSetup | Boolean | True |
Label View Setup and Configuration corresponds to this field. | |
PermissionsTransferAnyEntity | Boolean | True |
Label Transfer Record corresponds to this field. | |
PermissionsNewReportBuilder | Boolean | True |
Label Report Builder corresponds to this field. | |
PermissionsManageSelfService | Boolean | True |
Label Manage Self-Service Portal corresponds to this field. | |
PermissionsManageCssUsers | Boolean | True |
Label Edit Self-Service Users corresponds to this field. | |
PermissionsActivateContract | Boolean | True |
Label Activate Contracts corresponds to this field. | |
PermissionsImportLeads | Boolean | True |
Label Import Leads corresponds to this field. | |
PermissionsManageLeads | Boolean | True |
Label Manage Leads corresponds to this field. | |
PermissionsTransferAnyLead | Boolean | True |
Label Transfer Leads corresponds to this field. | |
PermissionsViewAllData | Boolean | True |
Label View All Data corresponds to this field. | |
PermissionsEditPublicDocuments | Boolean | True |
Label Manage Public Documents corresponds to this field. | |
PermissionsEditBrandTemplates | Boolean | True |
Label Manage Letterheads corresponds to this field. | |
PermissionsEditHtmlTemplates | Boolean | True |
Label Edit HTML Templates corresponds to this field. | |
PermissionsChatterInternalUser | Boolean | True |
Label Chatter Internal User corresponds to this field. | |
PermissionsManageDashboards | Boolean | True |
Label Manage Dashboards corresponds to this field. | |
PermissionsDeleteActivatedContract | Boolean | True |
Label Delete Activated Contracts corresponds to this field. | |
PermissionsChatterInviteExternalUsers | Boolean | True |
Label Invite Customers To Chatter corresponds to this field. | |
PermissionsSendSitRequests | Boolean | True |
Label Send Stay-in-Touch Requests corresponds to this field. | |
PermissionsManageRemoteAccess | Boolean | True |
Label Manage Connected Apps corresponds to this field. | |
PermissionsCanUseNewDashboardBuilder | Boolean | True |
Label Drag-and-Drop Dashboard Builder corresponds to this field. | |
PermissionsManageCategories | Boolean | True |
Label Manage Categories corresponds to this field. | |
PermissionsConvertLeads | Boolean | True |
Label Convert Leads corresponds to this field. | |
PermissionsPasswordNeverExpires | Boolean | True |
Label Password Never Expires corresponds to this field. | |
PermissionsUseTeamReassignWizards | Boolean | True |
Label Use Team Reassignment Wizards corresponds to this field. | |
PermissionsInstallMultiforce | Boolean | True |
Label Download AppExchange Packages corresponds to this field. | |
PermissionsPublishMultiforce | Boolean | True |
Label Upload AppExchange Packages corresponds to this field. | |
PermissionsChatterOwnGroups | Boolean | True |
Label Create and Own New Chatter Groups corresponds to this field. | |
PermissionsEditOppLineItemUnitPrice | Boolean | True |
Label Edit Opportunity Product Sales Price corresponds to this field. | |
PermissionsCreateMultiforce | Boolean | True |
Label Create AppExchange Packages corresponds to this field. | |
PermissionsBulkApiHardDelete | Boolean | True |
Label Bulk API Hard Delete corresponds to this field. | |
PermissionsSolutionImport | Boolean | True |
Label Import Solutions corresponds to this field. | |
PermissionsManageCallCenters | Boolean | True |
Label Manage Call Centers corresponds to this field. | |
PermissionsEditReports | Boolean | True |
Label Create and Customize Reports corresponds to this field. | |
PermissionsManageSynonyms | Boolean | True |
Label Manage Synonyms corresponds to this field. | |
PermissionsViewContent | Boolean | True |
Label View Content in Portals corresponds to this field. | |
PermissionsManageEmailClientConfig | Boolean | True |
Label Manage Email Client Configurations corresponds to this field. | |
PermissionsEnableNotifications | Boolean | True |
Label Send Outbound Messages corresponds to this field. | |
PermissionsManageDataIntegrations | Boolean | True |
Label Manage Data Integrations corresponds to this field. | |
PermissionsViewDataCategories | Boolean | True |
Label View Data Categories corresponds to this field. | |
PermissionsManageDataCategories | Boolean | True |
Label Manage Data Categories corresponds to this field. | |
PermissionsAuthorApex | Boolean | True |
Label Author Apex corresponds to this field. | |
PermissionsManageMobile | Boolean | True |
Label Manage Mobile Configurations corresponds to this field. | |
PermissionsApiEnabled | Boolean | True |
Label API Enabled corresponds to this field. | |
PermissionsManageCustomReportTypes | Boolean | True |
Label Manage Custom Report Types corresponds to this field. | |
PermissionsEditCaseComments | Boolean | True |
Label Edit Case Comments corresponds to this field. | |
PermissionsTransferAnyCase | Boolean | True |
Label Transfer Cases corresponds to this field. | |
PermissionsContentAdministrator | Boolean | True |
Label Manage Salesforce CRM Content corresponds to this field. | |
PermissionsCreateWorkspaces | Boolean | True |
Label Create Libraries corresponds to this field. | |
PermissionsManageContentPermissions | Boolean | True |
Label Manage Content Permissions corresponds to this field. | |
PermissionsManageContentProperties | Boolean | True |
Label Manage Content Properties corresponds to this field. | |
PermissionsManageContentTypes | Boolean | True |
Label Manage Content Types corresponds to this field. | |
PermissionsManageAnalyticSnapshots | Boolean | True |
Label Manage Analytic Snapshots corresponds to this field. | |
PermissionsScheduleReports | Boolean | True |
Label Schedule Reports corresponds to this field. | |
PermissionsManageBusinessHourHolidays | Boolean | True |
Label Manage Business Hours Holidays corresponds to this field. | |
PermissionsManageDynamicDashboards | Boolean | True |
Label Manage Dynamic Dashboards corresponds to this field. | |
PermissionsCustomSidebarOnAllPages | Boolean | True |
Label Show Custom Sidebar On All Pages corresponds to this field. | |
PermissionsManageInteraction | Boolean | True |
Label Manage Force.com Flow corresponds to this field. | |
PermissionsViewMyTeamsDashboards | Boolean | True |
Label View My Team's Dashboards corresponds to this field. | |
PermissionsModerateChatter | Boolean | True |
Label Moderate Chatter corresponds to this field. | |
PermissionsResetPasswords | Boolean | True |
Label Reset User Passwords and Unlock Users corresponds to this field. | |
PermissionsFlowUFLRequired | Boolean | True |
Label Require Force.com Flow User Feature License corresponds to this field. | |
PermissionsCanInsertFeedSystemFields | Boolean | True |
Label Insert System Field Values for Chatter Feeds corresponds to this field. | |
PermissionsManageKnowledgeImportExport | Boolean | True |
Label Manage Knowledge Article Import/Export corresponds to this field. | |
PermissionsEmailTemplateManagement | Boolean | True |
Label Manage Email Templates corresponds to this field. | |
PermissionsEmailAdministration | Boolean | True |
Label Email Administration corresponds to this field. | |
PermissionsManageChatterMessages | Boolean | True |
Label Manage Chatter Messages corresponds to this field. | |
PermissionsForceTwoFactor | Boolean | True |
Label Two-Factor Authentication for User Interface Logins corresponds to this field. | |
PermissionsManageNetworks | Boolean | True |
Label Create and Set Up Communities corresponds to this field. | |
PermissionsManageAuthProviders | Boolean | True |
Label Manage Auth. Providers corresponds to this field. | |
PermissionsRunFlow | Boolean | True |
Label Run Flows corresponds to this field. | |
PermissionsViewAllUsers | Boolean | True |
Label View All Users corresponds to this field. | |
PermissionsAllowUniversalSearch | Boolean | True |
Label Knowledge One corresponds to this field. | |
PermissionsConnectOrgToEnvironmentHub | Boolean | True |
Label Connect Organization to Environment Hub corresponds to this field. | |
PermissionsSalesConsole | Boolean | True |
Label Sales Console corresponds to this field. | |
PermissionsTwoFactorApi | Boolean | True |
Label Two-Factor Authentication for API Logins corresponds to this field. | |
PermissionsDeleteTopics | Boolean | True |
Label Delete Topics corresponds to this field. | |
PermissionsEditTopics | Boolean | True |
Label Edit Topics corresponds to this field. | |
PermissionsCreateTopics | Boolean | True |
Label Create Topics corresponds to this field. | |
PermissionsAssignTopics | Boolean | True |
Label Assign Topics corresponds to this field. | |
PermissionsIdentityEnabled | Boolean | True |
Label Use Identity Features corresponds to this field. | |
PermissionsIdentityConnect | Boolean | True |
Label Use Identity Connect corresponds to this field. | |
PermissionsAllowViewKnowledge | Boolean | True |
Label Allow View Knowledge corresponds to this field. | |
UserLicenseId | String | True |
UserLicense.Id |
Label User License ID corresponds to this field. |
UserType | String | True |
Label User Type corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the PushTopic entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the PushTopic. | |
Name | String | False |
Label Topic Name corresponds to this field. | |
Query | String | False |
Label SOQL Query corresponds to this field. | |
ApiVersion | Double | False |
Label API Version corresponds to this field. | |
IsActive | Boolean | False |
Label Is Active corresponds to this field. | |
NotifyForFields | String | False |
Label Notify For Fields corresponds to this field. | |
NotifyForOperations | String | True |
Label Notify For Operations corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
NotifyForOperationCreate | Boolean | False |
Label Create corresponds to this field. | |
NotifyForOperationUpdate | Boolean | False |
Label Update corresponds to this field. | |
NotifyForOperationDelete | Boolean | False |
Label Delete corresponds to this field. | |
NotifyForOperationUndelete | Boolean | False |
Label Undelete corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the QueueSobject entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the QueueSobject. | |
QueueId | String | False |
Group.Id |
Label Group ID corresponds to this field. |
SobjectType | String | False |
Label Sobject Type corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Quote entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Quote. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | False |
Label Quote Name corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
OpportunityId | String | False |
Opportunity.Id |
Label Opportunity ID corresponds to this field. |
Pricebook2Id | String | False |
Pricebook2.Id |
Label Price Book ID corresponds to this field. |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
QuoteNumber | String | True |
Label Quote Number corresponds to this field. | |
IsSyncing | Boolean | True |
Label Syncing corresponds to this field. | |
ShippingHandling | Double | False |
Label Shipping and Handling corresponds to this field. | |
Tax | Double | False |
Label Tax corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
ExpirationDate | Datetime | False |
Label Expiration Date corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
Subtotal | Double | True |
Label Subtotal corresponds to this field. | |
TotalPrice | Double | True |
Label Total Price corresponds to this field. | |
LineItemCount | Int | True |
Label Line Items corresponds to this field. | |
BillingStreet | String | False |
Label Bill To Street corresponds to this field. | |
BillingCity | String | False |
Label Bill To City corresponds to this field. | |
BillingState | String | False |
Label Bill To State/Province corresponds to this field. | |
BillingPostalCode | String | False |
Label Bill To Zip/Postal Code corresponds to this field. | |
BillingCountry | String | False |
Label Bill To Country corresponds to this field. | |
BillingLatitude | Double | False |
Label Bill To Latitude corresponds to this field. | |
BillingLongitude | Double | False |
Label Bill To Longitude corresponds to this field. | |
ShippingStreet | String | False |
Label Ship To Street corresponds to this field. | |
ShippingCity | String | False |
Label Ship To City corresponds to this field. | |
ShippingState | String | False |
Label Ship To State/Province corresponds to this field. | |
ShippingPostalCode | String | False |
Label Ship To Zip/Postal Code corresponds to this field. | |
ShippingCountry | String | False |
Label Ship To Country corresponds to this field. | |
ShippingLatitude | Double | False |
Label Ship To Latitude corresponds to this field. | |
ShippingLongitude | Double | False |
Label Ship To Longitude corresponds to this field. | |
QuoteToStreet | String | False |
Label Quote To Street corresponds to this field. | |
QuoteToCity | String | False |
Label Quote To City corresponds to this field. | |
QuoteToState | String | False |
Label Quote To State/Province corresponds to this field. | |
QuoteToPostalCode | String | False |
Label Quote To Zip/Postal Code corresponds to this field. | |
QuoteToCountry | String | False |
Label Quote To Country corresponds to this field. | |
QuoteToLatitude | Double | False |
Label Quote To Latitude corresponds to this field. | |
QuoteToLongitude | Double | False |
Label Quote To Longitude corresponds to this field. | |
AdditionalStreet | String | False |
Label Additional To Street corresponds to this field. | |
AdditionalCity | String | False |
Label Additional To City corresponds to this field. | |
AdditionalState | String | False |
Label Additional To State/Province corresponds to this field. | |
AdditionalPostalCode | String | False |
Label Additional To Zip/Postal Code corresponds to this field. | |
AdditionalCountry | String | False |
Label Additional To Country corresponds to this field. | |
AdditionalLatitude | Double | False |
Label Additional To Latitude corresponds to this field. | |
AdditionalLongitude | Double | False |
Label Additional To Longitude corresponds to this field. | |
BillingName | String | False |
Label Bill To Name corresponds to this field. | |
ShippingName | String | False |
Label Ship To Name corresponds to this field. | |
QuoteToName | String | False |
Label Quote To Name corresponds to this field. | |
AdditionalName | String | False |
Label Additional To Name corresponds to this field. | |
String | False |
Label Email corresponds to this field. | ||
Phone | String | False |
Label Phone corresponds to this field. | |
Fax | String | False |
Label Fax corresponds to this field. | |
Discount | Double | True |
Label Discount corresponds to this field. | |
GrandTotal | Double | True |
Label Grand Total corresponds to this field. |
This is a table representing the QuoteDocument entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the QuoteDocument. | |
Name | String | True |
Label Name corresponds to this field. | |
QuoteId | String | False |
Quote.Id |
Label Quote ID corresponds to this field. |
Document | String | False |
Label PDF Document corresponds to this field. | |
GrandTotal | Double | True |
Label Grand Total corresponds to this field. | |
Discount | Double | True |
Label Discount corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the QuoteFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the QuoteFeed. | |
ParentId | String | True |
Quote.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the QuoteLineItem entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the QuoteLineItem. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LineNumber | String | True |
Label Line Item Number corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
QuoteId | String | False |
Quote.Id |
Label Quote ID corresponds to this field. |
PricebookEntryId | String | False |
Label Price Book Entry ID corresponds to this field. | |
Quantity | Double | False |
Label Quantity corresponds to this field. | |
UnitPrice | Double | False |
Label Sales Price corresponds to this field. | |
Discount | Double | False |
Label Discount corresponds to this field. | |
Description | String | False |
Label Line Item Description corresponds to this field. | |
ServiceDate | Datetime | False |
Label Date corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
ListPrice | Double | True |
Label List Price corresponds to this field. | |
Subtotal | Double | True |
Label Subtotal corresponds to this field. | |
TotalPrice | Double | True |
Label Total Price corresponds to this field. |
This is a table representing the RecentlyViewed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the RecentlyViewed. | |
Name | String | True |
Label Name corresponds to this field. | |
LastName | String | True |
Label Last Name corresponds to this field. | |
FirstName | String | True |
Label First Name corresponds to this field. | |
Type | String | True |
Label Type corresponds to this field. | |
Alias | String | True |
Label Alias corresponds to this field. | |
UserRoleId | String | True |
UserRole.Id |
Label Role ID corresponds to this field. |
RecordTypeId | String | True |
RecordType.Id |
Label Record Type ID corresponds to this field. |
IsActive | Boolean | True |
Label Active corresponds to this field. | |
ProfileId | String | True |
Profile.Id |
Label Profile ID corresponds to this field. |
Title | String | True |
Label Title corresponds to this field. | |
String | True |
Label E-mail corresponds to this field. | ||
Phone | String | True |
Label Phone corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the RecordType entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the RecordType. | |
Name | String | False |
Label Name corresponds to this field. | |
DeveloperName | String | False |
Label Record Type Name corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
BusinessProcessId | String | False |
Label Business Process ID corresponds to this field. | |
SobjectType | String | False |
Label Sobject Type Name corresponds to this field. | |
IsActive | Boolean | True |
Label Active corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Report entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Report. | |
OwnerId | String | True |
Label Owner ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Name | String | True |
Label Report Name corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
DeveloperName | String | True |
Label Report Unique Name corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
LastRunDate | Datetime | True |
Label Last Run corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
Format | String | True |
Label Format corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. |
This is a table representing the ReportFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the ReportFeed. | |
ParentId | String | True |
Report.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the Scontrol entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Scontrol. | |
Name | String | True |
Label Label corresponds to this field. | |
DeveloperName | String | True |
Label S-Control Name corresponds to this field. | |
Description | String | True |
Label Description corresponds to this field. | |
EncodingKey | String | True |
Label Encoding corresponds to this field. | |
HtmlWrapper | String | True |
Label HTML Body corresponds to this field. | |
Filename | String | True |
Label Filename corresponds to this field. | |
BodyLength | Int | True |
Label Binary Length corresponds to this field. | |
Binary | String | True |
Label Binary corresponds to this field. | |
ContentSource | String | True |
Label Type corresponds to this field. | |
SupportsCaching | Boolean | True |
Label Prebuild In Page corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the SelfServiceUser entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SelfServiceUser. | |
LastName | String | False |
Label Last Name corresponds to this field. | |
FirstName | String | False |
Label First Name corresponds to this field. | |
Name | String | True |
Label Name corresponds to this field. | |
Username | String | False |
Label Username corresponds to this field. | |
String | False |
Label Email corresponds to this field. | ||
IsActive | Boolean | False |
Label Active corresponds to this field. | |
TimeZoneSidKey | String | False |
Label TimeZoneSidKey corresponds to this field. | |
LocaleSidKey | String | False |
Label LocaleSidKey corresponds to this field. | |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
LanguageLocaleKey | String | False |
Label LanguageLocaleKey corresponds to this field. | |
SuperUser | Boolean | True |
Label Super User corresponds to this field. | |
LastLoginDate | Datetime | True |
Label Last Login corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the SetupEntityAccess entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SetupEntityAccess. | |
ParentId | String | False |
Label Parent ID corresponds to this field. | |
SetupEntityId | String | False |
Label Setup Entity ID corresponds to this field. | |
SetupEntityType | String | True |
Label Setup Entity Type corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Site entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Site. | |
Name | String | True |
Label Site Name corresponds to this field. | |
Subdomain | String | True |
Label Site Subdomain Prefix corresponds to this field. | |
UrlPathPrefix | String | True |
Label Default Web Address corresponds to this field. | |
Status | String | True |
Label Site Status corresponds to this field. | |
AdminId | String | True |
User.Id |
Label User ID corresponds to this field. |
OptionsEnableFeeds | Boolean | True |
Label Enable Feeds corresponds to this field. | |
OptionsAllowHomePage | Boolean | True |
Label Enable Standard Home Page corresponds to this field. | |
OptionsAllowStandardIdeasPages | Boolean | True |
Label Enable Standard Ideas Pages corresponds to this field. | |
OptionsAllowStandardSearch | Boolean | True |
Label Enable Standard Lookup Pages corresponds to this field. | |
OptionsAllowStandardLookups | Boolean | True |
Label Enable Standard Search Pages corresponds to this field. | |
OptionsAllowStandardAnswersPages | Boolean | True |
Label Enable Standard Answers Pages corresponds to this field. | |
Description | String | True |
Label Site Description corresponds to this field. | |
MasterLabel | String | True |
Label Site Label corresponds to this field. | |
AnalyticsTrackingCode | String | True |
Label Analytics Tracking Code corresponds to this field. | |
SiteType | String | True |
Label Site Type corresponds to this field. | |
DailyBandwidthLimit | Int | True |
Label Daily Bandwidth Limit (MB) corresponds to this field. | |
DailyBandwidthUsed | Int | True |
Label Daily Bandwidth Used corresponds to this field. | |
DailyRequestTimeLimit | Int | True |
Label Daily Request Time Limit (min) corresponds to this field. | |
DailyRequestTimeUsed | Int | True |
Label Daily Request Time Used corresponds to this field. | |
MonthlyPageViewsEntitlement | Int | True |
Label Monthly Page Views Allowed corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the SiteFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SiteFeed. | |
ParentId | String | True |
Site.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the SiteHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SiteHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
SiteId | String | True |
Site.Id |
Label Site ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the Solution entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Solution. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
SolutionNumber | String | True |
Label Solution Number corresponds to this field. | |
SolutionName | String | False |
Label Title corresponds to this field. | |
IsPublished | Boolean | False |
Label Public corresponds to this field. | |
IsPublishedInPublicKb | Boolean | False |
Label Visible in Public Knowledge Base corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
IsReviewed | Boolean | True |
Label Reviewed corresponds to this field. | |
SolutionNote | String | False |
Label Description corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Owner ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
TimesUsed | Int | True |
Label Num Related Cases corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
IsHtml | Boolean | True |
Label Is Html corresponds to this field. |
This is a table representing the SolutionFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SolutionFeed. | |
ParentId | String | True |
Solution.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the SolutionHistory entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SolutionHistory. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
SolutionId | String | True |
Solution.Id |
Label Solution ID corresponds to this field. |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
Field | String | True |
Label Changed Field corresponds to this field. | |
OldValue | String | True |
Label Old Value corresponds to this field. | |
NewValue | String | True |
Label New Value corresponds to this field. |
This is a table representing the SolutionStatus entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the SolutionStatus. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | True |
Label Is Default corresponds to this field. | |
IsReviewed | Boolean | True |
Label Is Reviewed corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the StaticResource entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the StaticResource. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
ContentType | String | False |
Label MIME Type corresponds to this field. | |
BodyLength | Int | True |
Label Size corresponds to this field. | |
Body | String | False |
Label Body corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CacheControl | String | False |
Label Cache Control corresponds to this field. |
This is a table representing the Task entities in Salesforce. To retrieve archived tasks, you must explicitly query for records with IsArchived set to True.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Task. | |
WhoId | String | False |
Label Contact/Lead ID corresponds to this field. | |
WhatId | String | False |
Label Opportunity/Account ID corresponds to this field. | |
Subject | String | False |
Label Subject corresponds to this field. | |
ActivityDate | Datetime | False |
Label Due Date Only corresponds to this field. | |
Status | String | False |
Label Status corresponds to this field. | |
Priority | String | False |
Label Priority corresponds to this field. | |
OwnerId | String | False |
User.Id |
Label Assigned To ID corresponds to this field. |
Description | String | False |
Label Description corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
AccountId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
IsClosed | Boolean | True |
Label Closed corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsArchived | Boolean | True |
Label Archived corresponds to this field. | |
CallDurationInSeconds | Int | False |
Label Call Duration corresponds to this field. | |
CallType | String | False |
Label Call Type corresponds to this field. | |
CallDisposition | String | False |
Label Call Result corresponds to this field. | |
CallObject | String | False |
Label Call Object Identifier corresponds to this field. | |
ReminderDateTime | Datetime | False |
Label Reminder Date/Time corresponds to this field. | |
IsReminderSet | Boolean | False |
Label Reminder Set corresponds to this field. | |
RecurrenceActivityId | String | True |
Task.Id |
Label Recurrence Activity ID corresponds to this field. |
IsRecurrence | Boolean | False |
Label Create Recurring Series of Tasks corresponds to this field. | |
RecurrenceStartDateOnly | Datetime | False |
Label Start Date corresponds to this field. | |
RecurrenceEndDateOnly | Datetime | False |
Label End Date corresponds to this field. | |
RecurrenceTimeZoneSidKey | String | False |
Label Recurrence Time Zone corresponds to this field. | |
RecurrenceType | String | False |
Label Recurrence Type corresponds to this field. | |
RecurrenceInterval | Int | False |
Label Recurrence Interval corresponds to this field. | |
RecurrenceDayOfWeekMask | Int | False |
Label Recurrence Day of Week Mask corresponds to this field. | |
RecurrenceDayOfMonth | Int | False |
Label Recurrence Day of Month corresponds to this field. | |
RecurrenceInstance | String | False |
Label Recurrence Instance corresponds to this field. | |
RecurrenceMonthOfYear | String | False |
Label Recurrence Month of Year corresponds to this field. |
This is a table representing the TaskFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the TaskFeed. | |
ParentId | String | True |
Task.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the TaskPriority entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the TaskPriority. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | True |
Label Is Default corresponds to this field. | |
IsHighPriority | Boolean | True |
Label Is High Priority corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the TaskStatus entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the TaskStatus. | |
MasterLabel | String | True |
Label Master Label corresponds to this field. | |
SortOrder | Int | True |
Label Sort Order corresponds to this field. | |
IsDefault | Boolean | True |
Label Is Default corresponds to this field. | |
IsClosed | Boolean | True |
Label Is Closed corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the Topic entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Topic. | |
Name | String | False |
Label Name corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
TalkingAbout | Int | True |
Label Talking About corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the TopicAssignment entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the TopicAssignment. | |
TopicId | String | False |
Topic.Id |
Label Topic ID corresponds to this field. |
EntityId | String | False |
Label Entity ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the TopicFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the TopicFeed. | |
ParentId | String | True |
Topic.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the UndecidedEventRelation entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UndecidedEventRelation. | |
RelationId | String | True |
Label Relation ID corresponds to this field. | |
EventId | String | True |
Event.Id |
Label Event ID corresponds to this field. |
RespondedDate | Datetime | True |
Label Response Date corresponds to this field. | |
Response | String | True |
Label Response corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
Type | String | True |
Label Type corresponds to this field. |
This is a table representing the User entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the User. | |
Username | String | False |
Label Username corresponds to this field. | |
LastName | String | False |
Label Last Name corresponds to this field. | |
FirstName | String | False |
Label First Name corresponds to this field. | |
Name | String | True |
Label Full Name corresponds to this field. | |
CompanyName | String | False |
Label Company Name corresponds to this field. | |
Division | String | False |
Label Division corresponds to this field. | |
Department | String | False |
Label Department corresponds to this field. | |
Title | String | False |
Label Title corresponds to this field. | |
Street | String | False |
Label Street corresponds to this field. | |
City | String | False |
Label City corresponds to this field. | |
State | String | False |
Label State/Province corresponds to this field. | |
PostalCode | String | False |
Label Zip/Postal Code corresponds to this field. | |
Country | String | False |
Label Country corresponds to this field. | |
Latitude | Double | False |
Label Latitude corresponds to this field. | |
Longitude | Double | False |
Label Longitude corresponds to this field. | |
String | False |
Label E-mail corresponds to this field. | ||
EmailPreferencesAutoBcc | Boolean | False |
Label AutoBcc corresponds to this field. | |
EmailPreferencesAutoBccStayInTouch | Boolean | False |
Label AutoBccStayInTouch corresponds to this field. | |
EmailPreferencesStayInTouchReminder | Boolean | False |
Label StayInTouchReminder corresponds to this field. | |
SenderEmail | String | False |
Label Email Sender Address corresponds to this field. | |
SenderName | String | False |
Label Email Sender Name corresponds to this field. | |
Signature | String | False |
Label Email Signature corresponds to this field. | |
StayInTouchSubject | String | False |
Label Stay-in-Touch Email Subject corresponds to this field. | |
StayInTouchSignature | String | False |
Label Stay-in-Touch Email Signature corresponds to this field. | |
StayInTouchNote | String | False |
Label Stay-in-Touch Email Note corresponds to this field. | |
Phone | String | False |
Label Phone corresponds to this field. | |
Fax | String | False |
Label Fax corresponds to this field. | |
MobilePhone | String | False |
Label Cell corresponds to this field. | |
Alias | String | False |
Label Alias corresponds to this field. | |
CommunityNickname | String | False |
Label Nickname corresponds to this field. | |
IsActive | Boolean | False |
Label Active corresponds to this field. | |
TimeZoneSidKey | String | False |
Label Time Zone corresponds to this field. | |
UserRoleId | String | False |
UserRole.Id |
Label Role ID corresponds to this field. |
LocaleSidKey | String | False |
Label Locale corresponds to this field. | |
ReceivesInfoEmails | Boolean | False |
Label Info Emails corresponds to this field. | |
ReceivesAdminInfoEmails | Boolean | False |
Label Admin Info Emails corresponds to this field. | |
EmailEncodingKey | String | False |
Label Email Encoding corresponds to this field. | |
ProfileId | String | False |
Profile.Id |
Label Profile ID corresponds to this field. |
UserType | String | True |
Label User Type corresponds to this field. | |
LanguageLocaleKey | String | False |
Label Language corresponds to this field. | |
EmployeeNumber | String | False |
Label Employee Number corresponds to this field. | |
DelegatedApproverId | String | False |
Label Delegated Approver ID corresponds to this field. | |
ManagerId | String | False |
User.Id |
Label Manager ID corresponds to this field. |
LastLoginDate | Datetime | True |
Label Last Login corresponds to this field. | |
LastPasswordChangeDate | Datetime | True |
Label Last Password Change or Reset corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
OfflineTrialExpirationDate | Datetime | True |
Label Offline Edition Trial Expiration Date corresponds to this field. | |
OfflinePdaTrialExpirationDate | Datetime | True |
Label Sales Anywhere Trial Expiration Date corresponds to this field. | |
UserPermissionsMarketingUser | Boolean | False |
Label Marketing User corresponds to this field. | |
UserPermissionsOfflineUser | Boolean | False |
Label Offline User corresponds to this field. | |
UserPermissionsCallCenterAutoLogin | Boolean | False |
Label Auto-login To Call Center corresponds to this field. | |
UserPermissionsMobileUser | Boolean | False |
Label Apex Mobile User corresponds to this field. | |
UserPermissionsSFContentUser | Boolean | False |
Label Salesforce CRM Content User corresponds to this field. | |
UserPermissionsKnowledgeUser | Boolean | False |
Label Knowledge User corresponds to this field. | |
UserPermissionsInteractionUser | Boolean | False |
Label Force.com Flow User corresponds to this field. | |
UserPermissionsSupportUser | Boolean | False |
Label Service Cloud User corresponds to this field. | |
UserPermissionsSiteforceContributorUser | Boolean | False |
Label Site.com Contributor User corresponds to this field. | |
UserPermissionsSiteforcePublisherUser | Boolean | False |
Label Site.com Publisher User corresponds to this field. | |
UserPermissionsChatterAnswersUser | Boolean | False |
Label Chatter Answers User corresponds to this field. | |
ForecastEnabled | Boolean | False |
Label Allow Forecasting corresponds to this field. | |
UserPreferencesActivityRemindersPopup | Boolean | False |
Label ActivityRemindersPopup corresponds to this field. | |
UserPreferencesEventRemindersCheckboxDefault | Boolean | False |
Label EventRemindersCheckboxDefault corresponds to this field. | |
UserPreferencesTaskRemindersCheckboxDefault | Boolean | False |
Label TaskRemindersCheckboxDefault corresponds to this field. | |
UserPreferencesReminderSoundOff | Boolean | False |
Label ReminderSoundOff corresponds to this field. | |
UserPreferencesDisableAllFeedsEmail | Boolean | False |
Label DisableAllFeedsEmail corresponds to this field. | |
UserPreferencesDisableFollowersEmail | Boolean | False |
Label DisableFollowersEmail corresponds to this field. | |
UserPreferencesDisableProfilePostEmail | Boolean | False |
Label DisableProfilePostEmail corresponds to this field. | |
UserPreferencesDisableChangeCommentEmail | Boolean | False |
Label DisableChangeCommentEmail corresponds to this field. | |
UserPreferencesDisableLaterCommentEmail | Boolean | False |
Label DisableLaterCommentEmail corresponds to this field. | |
UserPreferencesDisProfPostCommentEmail | Boolean | False |
Label DisProfPostCommentEmail corresponds to this field. | |
UserPreferencesApexPagesDeveloperMode | Boolean | False |
Label ApexPagesDeveloperMode corresponds to this field. | |
UserPreferencesHideCSNGetChatterMobileTask | Boolean | False |
Label HideCSNGetChatterMobileTask corresponds to this field. | |
UserPreferencesDisableMentionsPostEmail | Boolean | False |
Label DisableMentionsPostEmail corresponds to this field. | |
UserPreferencesDisMentionsCommentEmail | Boolean | False |
Label DisMentionsCommentEmail corresponds to this field. | |
UserPreferencesHideCSNDesktopTask | Boolean | False |
Label HideCSNDesktopTask corresponds to this field. | |
UserPreferencesHideChatterOnboardingSplash | Boolean | False |
Label HideChatterOnboardingSplash corresponds to this field. | |
UserPreferencesHideSecondChatterOnboardingSplash | Boolean | False |
Label HideSecondChatterOnboardingSplash corresponds to this field. | |
UserPreferencesDisCommentAfterLikeEmail | Boolean | False |
Label DisCommentAfterLikeEmail corresponds to this field. | |
UserPreferencesDisableLikeEmail | Boolean | False |
Label DisableLikeEmail corresponds to this field. | |
UserPreferencesDisableMessageEmail | Boolean | False |
Label DisableMessageEmail corresponds to this field. | |
UserPreferencesOptOutOfTouch | Boolean | False |
Label OptOutOfTouch corresponds to this field. | |
UserPreferencesDisableBookmarkEmail | Boolean | False |
Label DisableBookmarkEmail corresponds to this field. | |
UserPreferencesDisableSharePostEmail | Boolean | False |
Label DisableSharePostEmail corresponds to this field. | |
UserPreferencesEnableAutoSubForFeeds | Boolean | False |
Label EnableAutoSubForFeeds corresponds to this field. | |
UserPreferencesDisableFileShareNotificationsForApi | Boolean | False |
Label DisableFileShareNotificationsForApi corresponds to this field. | |
UserPreferencesShowTitleToExternalUsers | Boolean | False |
Label ShowTitleToExternalUsers corresponds to this field. | |
UserPreferencesShowManagerToExternalUsers | Boolean | False |
Label ShowManagerToExternalUsers corresponds to this field. | |
UserPreferencesShowEmailToExternalUsers | Boolean | False |
Label ShowEmailToExternalUsers corresponds to this field. | |
UserPreferencesShowWorkPhoneToExternalUsers | Boolean | False |
Label ShowWorkPhoneToExternalUsers corresponds to this field. | |
UserPreferencesShowMobilePhoneToExternalUsers | Boolean | False |
Label ShowMobilePhoneToExternalUsers corresponds to this field. | |
UserPreferencesShowFaxToExternalUsers | Boolean | False |
Label ShowFaxToExternalUsers corresponds to this field. | |
UserPreferencesShowStreetAddressToExternalUsers | Boolean | False |
Label ShowStreetAddressToExternalUsers corresponds to this field. | |
UserPreferencesShowCityToExternalUsers | Boolean | False |
Label ShowCityToExternalUsers corresponds to this field. | |
UserPreferencesShowStateToExternalUsers | Boolean | False |
Label ShowStateToExternalUsers corresponds to this field. | |
UserPreferencesShowPostalCodeToExternalUsers | Boolean | False |
Label ShowPostalCodeToExternalUsers corresponds to this field. | |
UserPreferencesShowCountryToExternalUsers | Boolean | False |
Label ShowCountryToExternalUsers corresponds to this field. | |
UserPreferencesShowProfilePicToGuestUsers | Boolean | False |
Label ShowProfilePicToGuestUsers corresponds to this field. | |
UserPreferencesShowTitleToGuestUsers | Boolean | False |
Label ShowTitleToGuestUsers corresponds to this field. | |
UserPreferencesShowCityToGuestUsers | Boolean | False |
Label ShowCityToGuestUsers corresponds to this field. | |
UserPreferencesShowStateToGuestUsers | Boolean | False |
Label ShowStateToGuestUsers corresponds to this field. | |
UserPreferencesShowPostalCodeToGuestUsers | Boolean | False |
Label ShowPostalCodeToGuestUsers corresponds to this field. | |
UserPreferencesShowCountryToGuestUsers | Boolean | False |
Label ShowCountryToGuestUsers corresponds to this field. | |
UserPreferencesHideS1BrowserUI | Boolean | False |
Label HideS1BrowserUI corresponds to this field. | |
ContactId | String | False |
Contact.Id |
Label Contact ID corresponds to this field. |
AccountId | String | True |
Account.Id |
Label Account ID corresponds to this field. |
CallCenterId | String | False |
CallCenter.Id |
Label Call Center ID corresponds to this field. |
Extension | String | False |
Label Extension corresponds to this field. | |
FederationIdentifier | String | False |
Label SAML Federation ID corresponds to this field. | |
AboutMe | String | False |
Label About Me corresponds to this field. | |
FullPhotoUrl | String | True |
Label Url for full-sized Photo corresponds to this field. | |
SmallPhotoUrl | String | True |
Label Url for Thumbnail sized Photo corresponds to this field. | |
DigestFrequency | String | False |
Label Chatter Email Highlights Frequency corresponds to this field. | |
DefaultGroupNotificationFrequency | String | False |
Label Default Notification Frequency when Joining Groups corresponds to this field. | |
LastViewedDate | Datetime | True |
Label Last Viewed Date corresponds to this field. | |
LastReferencedDate | Datetime | True |
Label Last Referenced Date corresponds to this field. | |
GeoLoc__Latitude__s | Double | False |
Label GeoLoc (Latitude) corresponds to this field. | |
GeoLoc__Longitude__s | Double | False |
Label GeoLoc (Longitude) corresponds to this field. | |
GeoLoc__c | String | True |
Label GeoLoc corresponds to this field. | |
TextLong__c | String | False |
Label TextLong corresponds to this field. | |
ExternId__c | String | False |
Label ExternId corresponds to this field. |
This is a table representing the UserFeed entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserFeed. | |
ParentId | String | True |
User.Id |
Label Parent ID corresponds to this field. |
Type | String | True |
Label Feed Item Type corresponds to this field. | |
CreatedById | String | True |
Label Created By ID corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
CommentCount | Int | True |
Label Comment Count corresponds to this field. | |
LikeCount | Int | True |
Label Like Count corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
Body | String | True |
Label Body corresponds to this field. | |
LinkUrl | String | True |
Label Link Url corresponds to this field. | |
RelatedRecordId | String | True |
Label Related Record ID corresponds to this field. | |
ContentData | String | True |
Label Content Data corresponds to this field. | |
ContentFileName | String | True |
Label Content File Name corresponds to this field. | |
ContentDescription | String | True |
Label Content Description corresponds to this field. | |
ContentType | String | True |
Label Content File Type corresponds to this field. | |
ContentSize | Int | True |
Label Content Size corresponds to this field. | |
InsertedById | String | True |
Label InsertedBy ID corresponds to this field. |
This is a table representing the UserLicense entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserLicense. | |
LicenseDefinitionKey | String | True |
Label License Def. ID corresponds to this field. | |
Name | String | True |
Label Name corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the UserLogin entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserLogin. | |
UserId | String | True |
User.Id |
Label User ID corresponds to this field. |
IsFrozen | Boolean | True |
Label Is Frozen corresponds to this field. | |
IsPasswordLocked | Boolean | True |
Label Is Password Locked corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
This is a table representing the UserPreference entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserPreference. | |
UserId | String | True |
User.Id |
Label User ID corresponds to this field. |
Preference | String | True |
Label Preference corresponds to this field. | |
Value | String | True |
Label Value corresponds to this field. | |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the UserProfile entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserProfile. | |
LastName | String | True |
Label Last Name corresponds to this field. | |
FirstName | String | True |
Label First Name corresponds to this field. | |
Name | String | True |
Label Name corresponds to this field. | |
Title | String | True |
Label Title corresponds to this field. | |
ManagerId | String | True |
UserProfile.Id |
Label Manager ID corresponds to this field. |
CompanyName | String | True |
Label Company Name corresponds to this field. | |
AboutMe | String | True |
Label About Me corresponds to this field. | |
String | True |
Label E-mail corresponds to this field. | ||
Phone | String | True |
Label Phone corresponds to this field. | |
MobilePhone | String | True |
Label Cell corresponds to this field. | |
Fax | String | True |
Label Fax corresponds to this field. | |
Street | String | True |
Label Street corresponds to this field. | |
City | String | True |
Label City corresponds to this field. | |
State | String | True |
Label State/Province corresponds to this field. | |
PostalCode | String | True |
Label Zip/Postal Code corresponds to this field. | |
Country | String | True |
Label Country corresponds to this field. | |
Latitude | Double | True |
Label Latitude corresponds to this field. | |
Longitude | Double | True |
Label Longitude corresponds to this field. | |
IsBadged | Boolean | True |
Label User Photo has a badge overlay corresponds to this field. | |
IsActive | Boolean | True |
Label Active corresponds to this field. | |
UserPreferencesActivityRemindersPopup | Boolean | True |
Label ActivityRemindersPopup corresponds to this field. | |
UserPreferencesEventRemindersCheckboxDefault | Boolean | True |
Label EventRemindersCheckboxDefault corresponds to this field. | |
UserPreferencesTaskRemindersCheckboxDefault | Boolean | True |
Label TaskRemindersCheckboxDefault corresponds to this field. | |
UserPreferencesReminderSoundOff | Boolean | True |
Label ReminderSoundOff corresponds to this field. | |
UserPreferencesDisableAllFeedsEmail | Boolean | True |
Label DisableAllFeedsEmail corresponds to this field. | |
UserPreferencesDisableFollowersEmail | Boolean | True |
Label DisableFollowersEmail corresponds to this field. | |
UserPreferencesDisableProfilePostEmail | Boolean | True |
Label DisableProfilePostEmail corresponds to this field. | |
UserPreferencesDisableChangeCommentEmail | Boolean | True |
Label DisableChangeCommentEmail corresponds to this field. | |
UserPreferencesDisableLaterCommentEmail | Boolean | True |
Label DisableLaterCommentEmail corresponds to this field. | |
UserPreferencesDisProfPostCommentEmail | Boolean | True |
Label DisProfPostCommentEmail corresponds to this field. | |
UserPreferencesApexPagesDeveloperMode | Boolean | True |
Label ApexPagesDeveloperMode corresponds to this field. | |
UserPreferencesHideCSNGetChatterMobileTask | Boolean | True |
Label HideCSNGetChatterMobileTask corresponds to this field. | |
UserPreferencesDisableMentionsPostEmail | Boolean | True |
Label DisableMentionsPostEmail corresponds to this field. | |
UserPreferencesDisMentionsCommentEmail | Boolean | True |
Label DisMentionsCommentEmail corresponds to this field. | |
UserPreferencesHideCSNDesktopTask | Boolean | True |
Label HideCSNDesktopTask corresponds to this field. | |
UserPreferencesHideChatterOnboardingSplash | Boolean | True |
Label HideChatterOnboardingSplash corresponds to this field. | |
UserPreferencesHideSecondChatterOnboardingSplash | Boolean | True |
Label HideSecondChatterOnboardingSplash corresponds to this field. | |
UserPreferencesDisCommentAfterLikeEmail | Boolean | True |
Label DisCommentAfterLikeEmail corresponds to this field. | |
UserPreferencesDisableLikeEmail | Boolean | True |
Label DisableLikeEmail corresponds to this field. | |
UserPreferencesDisableMessageEmail | Boolean | True |
Label DisableMessageEmail corresponds to this field. | |
UserPreferencesOptOutOfTouch | Boolean | True |
Label OptOutOfTouch corresponds to this field. | |
UserPreferencesDisableBookmarkEmail | Boolean | True |
Label DisableBookmarkEmail corresponds to this field. | |
UserPreferencesDisableSharePostEmail | Boolean | True |
Label DisableSharePostEmail corresponds to this field. | |
UserPreferencesEnableAutoSubForFeeds | Boolean | True |
Label EnableAutoSubForFeeds corresponds to this field. | |
UserPreferencesDisableFileShareNotificationsForApi | Boolean | True |
Label DisableFileShareNotificationsForApi corresponds to this field. | |
UserPreferencesShowTitleToExternalUsers | Boolean | True |
Label ShowTitleToExternalUsers corresponds to this field. | |
UserPreferencesShowManagerToExternalUsers | Boolean | True |
Label ShowManagerToExternalUsers corresponds to this field. | |
UserPreferencesShowEmailToExternalUsers | Boolean | True |
Label ShowEmailToExternalUsers corresponds to this field. | |
UserPreferencesShowWorkPhoneToExternalUsers | Boolean | True |
Label ShowWorkPhoneToExternalUsers corresponds to this field. | |
UserPreferencesShowMobilePhoneToExternalUsers | Boolean | True |
Label ShowMobilePhoneToExternalUsers corresponds to this field. | |
UserPreferencesShowFaxToExternalUsers | Boolean | True |
Label ShowFaxToExternalUsers corresponds to this field. | |
UserPreferencesShowStreetAddressToExternalUsers | Boolean | True |
Label ShowStreetAddressToExternalUsers corresponds to this field. | |
UserPreferencesShowCityToExternalUsers | Boolean | True |
Label ShowCityToExternalUsers corresponds to this field. | |
UserPreferencesShowStateToExternalUsers | Boolean | True |
Label ShowStateToExternalUsers corresponds to this field. | |
UserPreferencesShowPostalCodeToExternalUsers | Boolean | True |
Label ShowPostalCodeToExternalUsers corresponds to this field. | |
UserPreferencesShowCountryToExternalUsers | Boolean | True |
Label ShowCountryToExternalUsers corresponds to this field. | |
UserPreferencesShowProfilePicToGuestUsers | Boolean | True |
Label ShowProfilePicToGuestUsers corresponds to this field. | |
UserPreferencesShowTitleToGuestUsers | Boolean | True |
Label ShowTitleToGuestUsers corresponds to this field. | |
UserPreferencesShowCityToGuestUsers | Boolean | True |
Label ShowCityToGuestUsers corresponds to this field. | |
UserPreferencesShowStateToGuestUsers | Boolean | True |
Label ShowStateToGuestUsers corresponds to this field. | |
UserPreferencesShowPostalCodeToGuestUsers | Boolean | True |
Label ShowPostalCodeToGuestUsers corresponds to this field. | |
UserPreferencesShowCountryToGuestUsers | Boolean | True |
Label ShowCountryToGuestUsers corresponds to this field. | |
UserPreferencesHideS1BrowserUI | Boolean | True |
Label HideS1BrowserUI corresponds to this field. | |
FullPhotoUrl | String | True |
Label Url for full-sized Photo corresponds to this field. | |
SmallPhotoUrl | String | True |
Label Url for Thumbnail sized Photo corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the UserRecordAccess entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserRecordAccess. | |
UserId | String | True |
User.Id |
Label User ID corresponds to this field. |
RecordId | String | True |
Label Record ID corresponds to this field. | |
HasReadAccess | Boolean | True |
Label Has Read Access corresponds to this field. | |
HasEditAccess | Boolean | True |
Label Has Edit Access corresponds to this field. | |
HasDeleteAccess | Boolean | True |
Label Has Delete Access corresponds to this field. | |
HasTransferAccess | Boolean | True |
Label Has Transfer Access corresponds to this field. | |
HasAllAccess | Boolean | True |
Label Has All Access corresponds to this field. | |
MaxAccessLevel | String | True |
Label Maximum Access Level corresponds to this field. |
This is a table representing the UserRole entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the UserRole. | |
Name | String | False |
Label Name corresponds to this field. | |
ParentRoleId | String | False |
UserRole.Id |
Label Parent Role ID corresponds to this field. |
RollupDescription | String | False |
Label Description corresponds to this field. | |
OpportunityAccessForAccountOwner | String | False |
Label Opportunity Access Level for Account Owner corresponds to this field. | |
CaseAccessForAccountOwner | String | False |
Label Case Access Level for Account Owner corresponds to this field. | |
ContactAccessForAccountOwner | String | True |
Label Contact Access Level for Account Owner corresponds to this field. | |
ForecastUserId | String | False |
User.Id |
Label User ID corresponds to this field. |
MayForecastManagerShare | Boolean | True |
Label May Forecast Manager Share corresponds to this field. | |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. | |
DeveloperName | String | False |
Label Developer Name corresponds to this field. | |
PortalAccountId | String | False |
Account.Id |
Label Account ID corresponds to this field. |
PortalType | String | False |
Label Portal Type corresponds to this field. | |
PortalAccountOwnerId | String | True |
User.Id |
Label User ID corresponds to this field. |
This is a table representing the Vote entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the Vote. | |
IsDeleted | Boolean | True |
Label Deleted corresponds to this field. | |
ParentId | String | False |
Solution.Id |
Label Parent ID corresponds to this field. |
Type | String | False |
Label Vote Type corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
This is a table representing the WebLink entities in Salesforce.
Name | Type | ReadOnly | References | Description |
Id [KEY] | String | True |
Unique identifier of the WebLink. | |
PageOrSobjectType | String | False |
Label Page Or sObject Type Name corresponds to this field. | |
Name | String | False |
Label Name corresponds to this field. | |
IsProtected | Boolean | False |
Label Protected Component corresponds to this field. | |
Url | String | False |
Label URL corresponds to this field. | |
EncodingKey | String | False |
Label Link Encoding corresponds to this field. | |
LinkType | String | False |
Label Content Source corresponds to this field. | |
OpenType | String | False |
Label Behavior corresponds to this field. | |
Height | Int | False |
Label Height (in pixels) corresponds to this field. | |
Width | Int | False |
Label Width (in pixels) corresponds to this field. | |
ShowsLocation | Boolean | False |
Label Show Address Bar corresponds to this field. | |
HasScrollbars | Boolean | False |
Label Show Scrollbars corresponds to this field. | |
HasToolbar | Boolean | False |
Label Show Toolbars corresponds to this field. | |
HasMenubar | Boolean | False |
Label Show Menu Bar corresponds to this field. | |
ShowsStatus | Boolean | False |
Label Show Status Bar corresponds to this field. | |
IsResizable | Boolean | False |
Label Resizeable corresponds to this field. | |
Position | String | False |
Label Window Position corresponds to this field. | |
ScontrolId | String | False |
Label Custom S-Control ID corresponds to this field. | |
MasterLabel | String | False |
Label Label corresponds to this field. | |
Description | String | False |
Label Description corresponds to this field. | |
DisplayType | String | False |
Label Display Type corresponds to this field. | |
RequireRowSelection | Boolean | False |
Label Require Row Selection corresponds to this field. | |
NamespacePrefix | String | True |
Label Namespace Prefix corresponds to this field. | |
CreatedDate | Datetime | True |
Label Created Date corresponds to this field. | |
CreatedById | String | True |
User.Id |
Label Created By ID corresponds to this field. |
LastModifiedDate | Datetime | True |
Label Last Modified Date corresponds to this field. | |
LastModifiedById | String | True |
User.Id |
Label Last Modified By ID corresponds to this field. |
SystemModstamp | Datetime | True |
Label System Modstamp corresponds to this field. |
Views are similar to tables in the way that data is represented; however, views are read-only.
Queries can be executed against a view as if it were a normal table.
Name | Description |
Formulas | This table lists formulas for the specified TableName. |
JobRecordResultsV2 | Retrieves a list of records for a specific job. |
PickListValues | This table lists picklist values for the specified TableName. |
PolymorphicColumnsRelationships | Lists polymorphic columns relationships in the specified table name. |
TableRelationships | Lists relationships in the specified table. |
This table lists formulas for the specified TableName.
The Cloud processes all filters client-side within the Cloud. The following queries are the only ones processed server side:
SELECT * FROM Formulas WHERE TableName = 'Account'
Note: Querying the table without a TableName filter specified will attempt to retrieve column metadata for all objects in your Salesforce account. Depending on the number of objects, this can take a while.
Name | Type | Description |
TableName | String | The name of the table. This must be specified when retrieving data from Formulas. |
ColumnName | String | The name of the column associated with the Formula. |
Formula | String | The formula associated with this field. |
Retrieves a list of records for a specific job.
This view shows information about the records that have passed, failed, or are unprocessed after executing the CreateJobV2 stored procedure.
To query this view you must specify the JobId, RecordState, and ColumnDelimiter columns in the WHERE clause. For example:
SELECT * FROM JobRecordResultsV2 WHERE JobId = '133485445' AND ColumnDelimiter = 'COMMA' AND RecordState = 'Failed'
Name | Type | Description |
ID [KEY] | String | ID of the record that was successfully processed. |
Created | Boolean | The name of the table. This must be specified when retrieving data from PickListInformation. |
RowFromOriginalCSV | String | Truncated row that was provided in the original job data upload request. |
JobId | String | Specified the unique Id of the job. |
RecordState | String | Specifies the type of the records that were processed by Salesforce. Valid values are 'Successful', 'Failed', 'Unprocessed'. |
ColumnDelimiter | String | The column delimiter used for CSV job data. Valid values are 'BACKQUOTE','CARET','COMMA', 'PIPE', 'SEMICOLON', 'TAB'. |
This table lists picklist values for the specified TableName.
TableName should be specified in the WHERE clause. RecordTypeId may also be specified along TableName to only retrieve data for a specific record type.
SELECT * FROM PickListValues WHERE TableName = 'Account' SELECT * FROM PickListValues WHERE TableName = 'Account' AND RecordTypeId = '0121W000000cq9EDAL'
Name | Type | Description |
ID [KEY] | String | The unique identifier of the picklist in the format ColumnName|Picklist_Value. |
TableName | String | The name of the table. This must be specified when retrieving data from PickListInformation. |
ColumnName | String | The name of the column associated with the picklist entry. This may be optionally specified to only retrieve picklist information with regards to the specified column. |
PickList_Value | String | The picklist value. |
PickList_Label | String | The label for the picklist value. |
PickList_IsActive | Boolean | A boolean indicating if the picklist value is active. |
PickList_IsDefault | Boolean | A boolean indicating if this picklist value is the default value for the column it is associated with. |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
RecordTypeId | String | The Id of the record type. Specify this to return values only for picklist fields of a record type. |
Lists polymorphic columns relationships in the specified table name.
Name | Type | Description |
TableName | String | The name of the table to retrieve relationship information from. |
ColumnName | String | The name of the polymorphic field. |
SalesforceType | String | The salesforce type of the polymorphic field. |
PrimaryKeyName | String | The name of the primary key. |
RelationshipName | String | The salesforce name of the relationship. |
ReferencedTableName | String | The name of the object the polymorphic fields relates to. |
ReferencedColumnName | String | The name of the column the polymorphic fields relates to. |
ForeignKeyName | String | The name of the foreign key. |
Lists relationships in the specified table.
Name | Type | Description |
ChildsObject [KEY] | String | The child table that is related to the specified TableName in the input. |
RelationshipName [KEY] | String | The name of the relationship. |
Field | String | The field the relationship is associated on. Found in the ChildsObject. |
ParentObject | String | The parent object in the relationship. This is the same as the input TableName. |
DeprecatedAndHidden | Boolean | Boolean indicating if the relationship is deprecated and now hidden. |
CascadeDelete | Boolean | Boolean stating if this entity is deleted, does the child object also get deleted. |
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
TableName | String | The name of the table to retrieve relationship information from. |
Stored procedures are function-like interfaces that extend the functionality of the Cloud beyond simple SELECT/INSERT/UPDATE/DELETE operations with Salesforce.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Salesforce, along with an indication of whether the procedure succeeded or failed.
Name | Description |
AbortJob | Aborts a Salesforce job. |
CloseJob | Closes a Salesforce job. |
CloseJobV2 | Closes or aborts a Salesforce job. |
ConvertLead | Converts a Lead into an Account, Contact, or (optionally) an Opportunity. |
CreateBatch | Creates a Salesforce batch. |
CreateJob | Add a Salesforce object entry. |
CreateJobV2 | Creates a job, which represents a bulk operation (and associated data) that is sent to Salesforce for asynchronous processing. Provide job data via an Upload Job Data request, or as part of a multipart create job request. |
DeleteJobV2 | Deletes a job. To be deleted, a job must have a state of UploadComplete, JobComplete, Aborted, or Failed. |
GetBatch | Gets information about a Salesforce batch. |
GetBatchResults | Gets the results of a Salesforce batch. |
GetDeleted | Retrieves the list of individual records that have been deleted within the given timespan for the specified object. |
GetJob | Gets information about a Salesforce job. |
GetJobBatchIds | Get batch id for all batches in a Job. |
GetLimitInfo | Retrieves limit information for the organization. Use this stored procedure to monitor your SOAP API limits as you make calls against the organization. |
GetUpdated | Retrieves the list of individual records that have been updated within the given timespan for the specified object. |
GetUserInformation | Retrieves personal information for the user associated with the current session. |
Merge | Combines up to 3 records of the same type into 1 record. |
MetadataDeploy | Deploys file representations of components into an org by creating, updating or deleting the components they represent. To be used after executing MetadataRetrieve Stored Procedure. |
MetadataDeployDetails | Used to retrieve additional details about MetadataDeploy job. Can be used after executing MetadataDeploy Stored Procedure. |
MetadataRetrieve | Retrieve file representations of components in an organization. |
QueryBatch | Gets data from Salesforce using query batch. Only batches created in CSV format are supported. Note that the outputs of this stored procedure are dynamic and depend on the Query input. |
Undelete | Restores from Salesforce's RecycleBin a deleted record. |
Aborts a Salesforce job.
Name | Type | Description |
JobId | String | Id of the job being aborted. |
Name | Type | Description |
ID | String | The Id of the job. |
JobID | String | The Id of the job. |
ObjectName | String | The name of the object to be used with the job. |
Operation | String | The operation for the job. For example, delete, insert, query, upsert, update, or hardDelete. |
ApiVersion | String | The API version of the job set in the URI when the job was created. The earliest supported version is 17.0. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the job data. This is the sum of the equivalent times in all batches in the job. This does not include the time used for processing asynchronous and batch Apex operations. If there are no triggers, the value is 0. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the job. This value includes ApexProcessingTime, but not the time the job waited in the queue to be processed or the time required for serialization and deserialization. This is the sum of the equivalent times in all batches in the job. This field is available in API version 19.0 and later. |
AssignmentRuleId | String | The Id of a specific assignment rule to run for a case or a lead. The assignment rule can be active or inactive. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are: parallel and serial. |
ContentType | String | The content type for the job. The valid values are: CSV, XML, ZIP_CSV, and ZIP_XML. |
CreatedById | String | Id of the user who created the job. |
CreatedDate | String | Date the job was created. |
ExternalIdFieldName | String | The name of the external Id field for an upsert. |
NumberBatchesCompleted | String | The number of batches that have been completed for this job. |
NumberBatchesQueued | String | The number of batches queued for this job. |
NumberBatchesFailed | String | The number of batches that have failed for this job. |
NumberBatchesInProgress | String | The number of batches that are in progress for this job. |
NumberBatchesTotal | String | The number of total batches currently in the job. This value increases as more batches are added to the job. When the jobstate is Closed or Failed, this number represents the final total. The job is complete when NumberBatchesTotal equals the sum of NumberBatchesCompleted and NumberBatchesFailed. |
NumberRecordsFailed | String | The number of records that were not processed successfully in this job. This field is available in API version 19.0 and later. |
NumberRecordsProcessed | String | The number of records already processed. This number increases as more batches are processed. |
NumberRetries | String | The number of times that Salesforce attempted to save the results of an operation. The repeated attempts are due to a problem, such as a lock contention. |
State | String | The state of the job. For example, Open, Closed, Aborted, or Failed. |
SystemModStamp | String | Date and time in the UTC time zone when the job finished. |
TotalProcessingTime | String | The number of milliseconds taken to process the job. This is the sum of the total processing times for all batches in the job. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |
Closes a Salesforce job.
Name | Type | Description |
JobId | String | Id of the job being closed. |
Name | Type | Description |
ID | String | The Id of the job. |
JobID | String | The Id of the job. |
ObjectName | String | The name of the object to be used with the job. |
Operation | String | The operation for the job. For example, delete, insert, query, upsert, update, or hardDelete. |
ApiVersion | String | The API version of the job set in the URI when the job was created. The earliest supported version is 17.0. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the job data. This is the sum of the equivalent times in all batches in the job. This does not include the time used for processing asynchronous and batch Apex operations. If there are no triggers, the value is 0. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the job. This value includes ApexProcessingTime, but does not include the time the job waited in the queue to be processed or the time required for serialization and deserialization. This is the sum of the equivalent times in all batches in the job. This field is available in API version 19.0 and later. |
AssignmentRuleId | String | The Id of a specific assignment rule to run for a case or a lead. The assignment rule can be active or inactive. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are: parallel and serial. |
ContentType | String | The content type for the job. The valid values are: CSV, XML, ZIP_CSV, and ZIP_XML. |
CreatedById | String | Id of the user who created the job. |
CreatedDate | String | Date the job was created. |
ExternalIdFieldName | String | The name of the external Id field for an upsert. |
NumberBatchesCompleted | String | The number of batches that have been completed for this job. |
NumberBatchesQueued | String | The number of batches queued for this job. |
NumberBatchesFailed | String | The number of batches that have failed for this job. |
NumberBatchesInProgress | String | The number of batches that are in progress for this job. |
NumberBatchesTotal | String | The number of total batches currently in the job. This value increases as more batches are added to the job. When the jobstate is Closed or Failed, this number represents the final total. The job is complete when NumberBatchesTotal equals the sum of NumberBatchesCompleted and NumberBatchesFailed. |
NumberRecordsFailed | String | The number of records that were not processed successfully in this job. This field is available in API version 19.0 and later. |
NumberRecordsProcessed | String | The number of records already processed. This number increases as more batches are processed. |
NumberRetries | String | The number of times that Salesforce attempted to save the results of an operation. The repeated attempts are due to a problem, such as a lock contention. |
State | String | The state of the job. For example, Open, Closed, Aborted, or Failed. |
SystemModStamp | String | Date and time in the UTC time zone when the job finished. |
TotalProcessingTime | String | The number of milliseconds taken to process the job. This is the sum of the total processing times for all batches in the job. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |
Closes or aborts a Salesforce job.
Name | Type | Description |
JobId | String | Id of the job being closed. |
State | String | The state to update the job to. Use UploadComplete state to close a job. It is applicable only when the UploadJobDataV2 stored procedure is utilized or use Aborted state to abort a job.
The allowed values are UploadComplete, Aborted. |
Name | Type | Description |
Closed | String | Whether the Job was closed or not. |
Converts a Lead into an Account, Contact, or (optionally) an Opportunity.
Note: This procedure makes use of indexed parameters. Indexed parameters facilitate providing multiple instances a single parameter as inputs for the procedure.
Suppose there is an input parameter named Param#. To input multiple instances of an indexed parameter like this, execute:
EXEC ProcedureName Param#1 = "value1", Param#2 = "value2", Param#3 = "value3"
In the table below, indexed parameters are denoted with a '#' character at the end of their names.
Name | Type | Description |
AccountId# | String | ID of the Account into which the lead will be merged. Required only when updating an existing account, including person accounts. If no accountID is specified, then the API creates a new account. To create a new account, the client application must be logged in with sufficient access rights. To merge a lead into an existing account, the client application must be logged in with read/write access to the specified account. The account name and other existing data are not overwritten. |
ContactId# | String | ID of the Contact into which the lead will be merged (this contact must be associated with the specified accountId, and an accountId must be specified). Required only when updating an existing contact. If you are converting a lead into a person account, do not specify the contactId or an error will result. Specify only the accountId of the person account. If no contactID is specified, then the API creates a new contact that is implicitly associated with the Account. To create a new contact, the client application must be logged in with sufficient access rights. To merge a lead into an existing contact, the client application must be logged in with read/write access to the specified contact. The contact name and other existing data are not overwritten (unless overwriteLeadSource is set to true, in which case only the LeadSource field is overwritten). |
ConvertedStatus# | String | Valid LeadStatus value for a converted lead. Required. To obtain the list of possible values, the client application queries the LeadStatus object. e.g: SELECT Id, MasterLabel FROM LeadStatus WHERE IsConverted=true |
DoNotCreateOpportunity# | String | Specifies whether to create an Opportunity during lead conversion (false, the default) or not (true). Set this flag to true only if you do not want to create an opportunity from the lead. An opportunity is created by default. |
LeadId# | String | ID of the Lead to convert. Required. |
OpportunityName# | String | Name of the opportunity to create. If no name is specified, then this value defaults to the company name of the lead. The maximum length of this field is 80 characters. If doNotCreateOpportunity argument is true, then no Opportunity is created and this field must be left blank; otherwise, an error is returned. |
OverwriteLeadSource# | String | Specifies whether to overwrite the LeadSource field on the target Contact object with the contents of the LeadSource field in the source Lead object (true), or not (false, the default). To set this field to true, the client application must specify a contactId for the target contact. |
OwnerId# | String | Specifies the ID of the person to own any newly created account, contact, and opportunity. If the client application does not specify this value, then the owner of the new object will be the owner of the lead. Not applicable when merging with existing objects-if an ownerId is specified, the API does not overwrite the ownerId field in an existing account or contact. |
SendNotificationEmail# | String | Specifies whether to send a notification email to the owner specified in the ownerId (true) or not (false, the default).
The default value is FALSE. |
Name | Type | Description |
AccountId | String | ID of the new Account (if a new account was specified) or the ID of the account specified when convertLead() was invoked. |
ContactId | String | ID of the new Contact (if a new contact was specified) or the ID of the contact specified when convertLead() was invoked. |
LeadId | String | ID of the converted Lead. |
OpportunityId | String | ID of the new Opportunity, if one was created when convertLead() was invoked. |
Success | String | Indicates whether the convertLead() call succeeded (true) or not (false) for this object. |
Errors | String | If an error occurred during the create() call, an array of one or more Error objects providing the error code and description. |
Creates a Salesforce batch.
To create a batch, specify the Id of the Job you are adding it to and the XML aggregate of the batch itself. For example, the XML aggregate may resemble the following:
<?xml version="1.0" encoding="UTF-8"?> <sObjects xmlns="http://www.force.com/2009/06/asyncapi/dataload" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <sObject> <FirstName>Bill</FirstName> <LastName>White</LastName> </sObject> <sObject> <FirstName>Bob</FirstName> <LastName>Black</LastName> </sObject> </sObjects>
Note: The objects contained in the XML aggregate must all correspond to the object associated with the Job being used.
Name | Type | Description |
JobId | String | Id of the job the batch is being added to. |
Aggregate | String | The aggregate of objects being added. Specifies the query to use if performing a batch query. |
ContentType | String | The content type for the job. The valid values are: CSV, XML, ZIP_CSV, and ZIP_XML. Set the value to CSV if performing a batch query
The default value is XML. |
Name | Type | Description |
ID | String | The Id of the batch. |
JobID | String | The Id of the job. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the batch data. If there are no triggers, the value is 0. This does not include the time used for processing asynchronous and batch Apex operations. See also ApiActiveProcessingTime and TotalProcessingTime. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the batch. This value includes ApexProcessingTime, but not the time the batch waited in the queue to be processed or the time required for serialization and deserialization. See also TotalProcessingTime. This field is available in API version 19.0 and later. |
CreatedDate | String | The date and time in the UTC time zone when the batch was created. This is not the time processing began, but the time the batch was added to the job. |
NumberRecordsFailed | String | The unique, 18 character Id for the job associated with this batch. |
NumberRecordsProcessed | String | The number of records processed in this batch at the time the request was sent. This number increases as more batches are processed. |
State | String | The current state of processing for the batch. For instance, Queued, InProgress, Completed, Failed, or Not Processed. |
StateMessage | String | Contains details about the state. For example, if the state value is Failed, this field contains the reasons for failure. If there are multiple failures, the message may be truncated. If so, fix the known errors and resubmit the batch: Even if the batch failed, some records could have been completed successfully. |
SystemModstamp | String | The date and time in the UTC time zone that processing ended. This is only valid when the state is Completed. |
TotalProcessingTime | String | The number of milliseconds taken to process the batch. This excludes the time the batch waited in the queue to be processed. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |
Add a Salesforce object entry.
Name | Type | Description |
ObjectName | String | Name of the object to be used for the job (i.e., Account, Campaign, Event, etc.) |
Action | String | Type of action to use in the job. For example, insert, update, upsert, delete or query. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are Parallel or Serial. Parallel: Process batches in parallel mode. This is the default value. Serial: Process batches in serial mode. Processing in parallel can cause database contention. When this is severe, the job may fail. If you experience this issue, submit the job with serial concurrency mode. This guarantees that batches are processed one at a time. Note that using this option may significantly increase the processing time for a job.
The allowed values are Parallel, Serial. The default value is Parallel. |
ContentType | String | The content type for the job. The valid values are: CSV, XML, ZIP_CSV, and ZIP_XML.
The default value is XML. |
ExternalIdColumn | String | Specifies the external Id column to use if performing an upsert. |
ChunkSize | String | Salesforce recommends that you enable chunking when querying tables with more than 10 million records or when a bulk query consistently times out. If chunksize is specified the query is split into multiple batches. Use this paramter only if action value is query. |
Name | Type | Description |
ID | String | The Id of the job created. |
JobID | String | The Id of the job. |
ObjectName | String | The name of the object to be used with the job. |
Operation | String | The operation for the job. For example, delete, insert, query, upsert, update, or hardDelete. |
ApiVersion | String | The API version of the job set in the URI when the job was created. The earliest supported version is 17.0. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the job data. This is the sum of the equivalent times in all batches in the job. This does not include the time used for processing asynchronous and batch Apex operations. If there are no triggers, the value is 0. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the job. This value includes ApexProcessingTime but not the time the job waited in the queue to be processed or the time required for serialization and deserialization. This is the sum of the equivalent times in all batches in the job. This field is available in API version 19.0 and later. |
AssignmentRuleId | String | The Id of a specific assignment rule to run for a case or a lead. The assignment rule can be active or inactive. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are: parallel and serial. |
ContentType | String | The content type for the job. The valid values are: CSV, XML, ZIP_CSV, and ZIP_XML. |
CreatedById | String | Id of the user who created the job. |
CreatedDate | String | Date the job was created. |
ExternalIdFieldName | String | The name of the external Id field for an upsert. |
NumberBatchesCompleted | String | The number of batches that have been completed for this job. |
NumberBatchesQueued | String | The number of batches queued for this job. |
NumberBatchesFailed | String | The number of batches that have failed for this job. |
NumberBatchesInProgress | String | The number of batches that are in progress for this job. |
NumberBatchesTotal | String | The number of total batches currently in the job. This value increases as more batches are added to the job. When the jobstate is Closed or Failed, this number represents the final total. The job is complete when NumberBatchesTotal equals the sum of NumberBatchesCompleted and NumberBatchesFailed. |
NumberRecordsFailed | String | The number of records that were not processed successfully in this job. This field is available in API version 19.0 and later. |
NumberRecordsProcessed | String | The number of records already processed. This number increases as more batches are processed. |
NumberRetries | String | The number of times that Salesforce attempted to save the results of an operation. The repeated attempts are due to a problem, such as a lock contention. |
State | String | The state of the job. For example, Open, Closed, Aborted, or Failed. |
SystemModStamp | String | Date and time in the UTC time zone when the job finished. |
TotalProcessingTime | String | The number of milliseconds taken to process the job. This is the sum of the total processing times for all batches in the job. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |
Creates a job, which represents a bulk operation (and associated data) that is sent to Salesforce for asynchronous processing. Provide job data via an Upload Job Data request, or as part of a multipart create job request.
Name | Type | Description |
ObjectName | String | Name of the object to be used for the job (i.e., Account, Campaign, Event, etc.) |
Action | String | Type of action to use in the job. Valid values are 'insert', 'delete', 'update' or 'upsert'. |
ExternalIdColumn | String | The external ID field in the object being updated. Only needed for upsert operations. Field values must also exist in CSV job data. |
ColumnDelimiter | String | The column delimiter used for CSV job data. The default value is COMMA. Valid values are 'BACKQUOTE','CARET','COMMA', 'PIPE', 'SEMICOLON', 'TAB'. |
LineEnding | String | The line ending used for CSV job data, marking the end of a data row. The default is LF. Valid values are 'LF' and 'CRLF'. |
MultiPartRequest | Boolean | Enable this feature only when the total size of the CSV data does not exceed 20,000 characters. You must also specify the path of your CSV file. |
CSVFilePath | String | Specifies the path of your CSV File. |
Name | Type | Description |
ID | String | The Id of the job created. |
State | String | The state of the job. For example, 'Open', 'Closed', 'Aborted', or 'Failed'. |
JobType | String | The type of the job. Values include: 'BigObjectIngest', 'Classic', 'V2Ingest'. |
ContentUrl | String | The URL to use for 'Upload Job Data' requests for this job. Only valid if the job is in Open state. |
ContentType | String | The format of the data being processed. Only CSV is supported. |
CreatedDate | String | The date and time in the UTC time zone when the job was created. |
CreatedById | String | The ID of the user who created the job. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are: parallel and serial. |
SystemModStamp | String | Date and time in the UTC time zone when the job finished. |
Deletes a job. To be deleted, a job must have a state of UploadComplete, JobComplete, Aborted, or Failed.
Name | Type | Description |
JobId | String | Id of the job being deleted. |
Name | Type | Description |
Deleted | String | Whether the Job was successfully deleted or not. |
Gets information about a Salesforce batch.
Name | Type | Description |
JobId | String | Id of the job the batch is associated with. |
BatchId | String | Id of the batch being retrieved. |
Name | Type | Description |
ID | String | The Id of the batch. |
JobID | String | The Id of the job. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the batch data. If there are no triggers, the value is 0. This does not include the time used for processing asynchronous and batch Apex operations. See also ApiActiveProcessingTime and TotalProcessingTime. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the batch. This value includes ApexProcessingTime but not the time the batch waited in the queue to be processed or the time required for serialization and deserialization. See also TotalProcessingTime. This field is available in API version 19.0 and later. |
CreatedDate | String | The date and time in the UTC time zone when the batch was created. This is not the time processing began, but the time the batch was added to the job. |
NumberRecordsFailed | String | The unique, 18-character Id for the job associated with this batch. |
NumberRecordsProcessed | String | The number of records processed in this batch at the time the request was sent. This number increases as more batches are processed. |
State | String | The current state of processing for the batch. For instance, Queued, InProgress, Completed, Failed, or Not Processed. |
StateMessage | String | Contains details about the state. For example, if the state value is Failed, this field contains the reasons for failure. If there are multiple failures, the message may be truncated. If so, fix the known errors and resubmit the batch. Even if the batch failed, some records could have been completed successfully. |
SystemModstamp | String | The date and time in the UTC time zone that processing ended. This is only valid when the state is Completed. |
TotalProcessingTime | String | The number of milliseconds taken to process the batch. This excludes the time the batch waited in the queue to be processed. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |
Gets the results of a Salesforce batch.
Name | Type | Description |
JobId | String | Id of the job the batch is associated with. |
BatchId | String | Id of the batch being retrieved. |
Name | Type | Description |
ID | String | The Id of the result. |
Created | String | Boolean indicating whether or not the result was created. |
Success | String | Boolean indicating whether or not the result was a success. |
Errors_Fields | String | Fields that resulted in an error. |
Errors_Message | String | Error message returned. |
Errors_StatusCode | String | The status code for the error. |
Retrieves the list of individual records that have been deleted within the given timespan for the specified object.
Name | Type | Description |
ObjectType | String | Object type. The specified value must be a valid object for your organization. |
StartDate | String | Starting date/time (Coordinated Universal Time (UTC)-not local- timezone) of the timespan for which to retrieve the data. The API ignores the seconds portion of the specified dateTime value (for example, 12:30:15 is interpreted as 12:30:00 UTC). |
EndDate | String | Ending date/time (Coordinated Universal Time (UTC)-not local- timezone) of the timespan for which to retrieve the data. The API ignores the seconds portion of the specified dateTime value (for example, 12:35:15 is interpreted as 12:35:00 UTC). |
Name | Type | Description |
Id | String | ID of the deleted records which satisfy the start and end dates specified in the getDeleted() call. |
DeletedDate | String | Date of the deleted records which satisfy the start and end dates specified in the getDeleted() call. |
Gets information about a Salesforce job.
Name | Type | Description |
JobId | String | Id of the job being retrieved. |
Name | Type | Description |
ID | String | The Id of the job. |
JobID | String | The Id of the job. |
ObjectName | String | The name of the object to be used with the job. |
Operation | String | The operation for the job. For example, delete, insert, query, upsert, update, or hardDelete. |
ApiVersion | String | The API version of the job set in the URI when the job was created. The earliest supported version is 17.0. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the job data. This is the sum of the equivalent times in all batches in the job. This does not include the time used for processing asynchronous and batch Apex operations. If there are no triggers, the value is 0. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the job. This value includes ApexProcessingTime but not the time the job waited in the queue to be processed or the time required for serialization and deserialization. This is the sum of the equivalent times in all batches in the job. This field is available in API version 19.0 and later. |
AssignmentRuleId | String | The Id of a specific assignment rule to run for a case or a lead. The assignment rule can be active or inactive. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are: parallel and serial. |
ContentType | String | The content type for the job. The valid values are: CSV, XML, ZIP_CSV, and ZIP_XML. |
CreatedById | String | Id of the user who created the job. |
CreatedDate | String | Date the job was created. |
ExternalIdFieldName | String | The name of the external Id field for an upsert. |
NumberBatchesCompleted | String | The number of batches that have been completed for this job. |
NumberBatchesQueued | String | The number of batches queued for this job. |
NumberBatchesFailed | String | The number of batches that have failed for this job. |
NumberBatchesInProgress | String | The number of batches that are in progress for this job. |
NumberBatchesTotal | String | The number of total batches currently in the job. This value increases as more batches are added to the job. When the jobstate is Closed or Failed, this number represents the final total. The job is complete when NumberBatchesTotal equals the sum of NumberBatchesCompleted and NumberBatchesFailed. |
NumberRecordsFailed | String | The number of records that were not processed successfully in this job. This field is available in API version 19.0 and later. |
NumberRecordsProcessed | String | The number of records already processed. This number increases as more batches are processed. |
NumberRetries | String | The number of times that Salesforce attempted to save the results of an operation. The repeated attempts are due to a problem, such as a lock contention. |
State | String | The state of the job. For example, Open, Closed, Aborted, or Failed. |
SystemModStamp | String | Date and time in the UTC time zone when the job finished. |
TotalProcessingTime | String | The number of milliseconds taken to process the job. This is the sum of the total processing times for all batches in the job. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |
Get batch id for all batches in a Job.
Name | Type | Description |
JobId | String | Id of the job. |
Name | Type | Description |
ID | String | The Id of the batch. |
State | String | The state of the batch. |
Retrieves limit information for the organization. Use this stored procedure to monitor your SOAP API limits as you make calls against the organization.
Name | Type | Description |
Current | Integer | The number of calls for the specified limit type that have already been used in the organization. |
Limit | Integer | The organization's limit for the specified limit type. |
Type | String | The type of limit information specified in the header. API REQUESTS-the daily API usage for the organization against which the call was made. |
Retrieves the list of individual records that have been updated within the given timespan for the specified object.
Name | Type | Description |
ObjectType | String | Object type. The specified value must be a valid object for your organization. |
StartDate | String | Starting date/time (Coordinated Universal Time (UTC)-not local- timezone) of the timespan for which to retrieve the data. The API ignores the seconds portion of the specified dateTime value (for example, 12:30:15 is interpreted as 12:30:00 UTC). |
EndDate | String | Ending date/time (Coordinated Universal Time (UTC)-not local- timezone) of the timespan for which to retrieve the data. The API ignores the seconds portion of the specified dateTime value (for example, 12:35:15 is interpreted as 12:35:00 UTC). |
Name | Type | Description |
Id | String | ID of the updated records which satisfy the start and end dates specified in the getUpdated() call. |
Retrieves personal information for the user associated with the current session.
Name | Type | Description |
BasicInfoOnly | String | Default is false. If this input is set to true, the procedure will only return basic information like the ServerURL, SessionID, Sandbox, OrganizationId and OrganizationName. |
Name | Type | Description |
AccessibilityMode | String | Available in API version 7.0 and later. Indicates whether user interface modifications for the visually impaired are on (true) or off (false). The modifications facilitate the use of screen readers, such as JAWS. |
CurrencySymbol | String | Currency symbol to use for displaying currency values. Applicable only when OrganizationMultiCurrency is false. |
OrganizationId | String | Id of the organization. Allows third-party tools to uniquely identify individual organizations in Salesforce, which is useful for retrieving billing or organization-wide setup information. |
OrganizationMultiCurrency | String | Indicates whether the user's organization uses multiple currencies (true) or not (false). |
OrganizationName | String | Name of the user's organization or company. |
OrgDefaultCurrencyIsoCode | String | Default currency ISO code. Applicable only when OrganizationMultiCurrency is false. When the logged-in user creates any objects that have a currency ISO code, the API uses this currency ISO code if it is not explicitly specified in the create() call. |
ProfileID | String | Id of the profile associated with the role currently assigned to the user. |
RoleID | String | Role Id of the role currently assigned to the user. |
Sandbox | String | Whether the current organization is a sandbox. Either 'true' or 'false' for Basic authorization, and NULL otherwise. |
ServerURL | String | The server URL of the Salesforce instance. |
SessionID | String | The currently active section used by the API connection. |
SessionSecondsValid | String | Number of seconds remaining until the user's session expires. |
UserDefaultCurrencyIsoCode | String | Default currency ISO code. Applicable only when OrganizationMultiCurrency is true. When the logged-in user creates any objects that have a currency ISO code, the API uses this currency ISO code if it is not explicitly specified in the create() call. |
UserEmail | String | The user's email address. |
UserFullName | String | The user's full name. |
UserID | String | The user's Id. |
UserLanguage | String | User's language, which controls the language for labels displayed in an application. String is 2-5 characters long. The first two characters are always an ISO language code. For example, fr or en. If the value is further qualified by country, then the string also has an underscore (_) and another ISO country code, for example US or UK. For example, the string for the United States is en_US, and the string for French Canadian is fr_CA. |
UserLocale | String | User's locale, which controls the formatting of dates and choice of symbols for currency. The first two characters are always an ISO language code; for example, fr or en. If the value is further qualified by country, then the string also has an underscore (_) and another ISO country code; for example, US or UK. For example, the string for the United States is en_US, and the string for French Canadian is fr_CA. |
UserName | String | User's login name. |
UserTimeZone | String | User's time zone. |
UserType | String | Type of user license assigned to the Profile associated with the user. |
UserUISkin | String | Available in API version 7.0 and later. Returns the value Theme2 if the user is using the newer user interface theme of the online application, labeled Salesforce. Returns Theme1 if the user is using the older user interface theme, labeled Salesforce Classic. In the online application, this look and feel setting is configurable from Setup by clicking Customize | User Interface. |
Combines up to 3 records of the same type into 1 record.
Name | Type | Description |
ObjectType | String | Object type. The specified value must be a valid object for your organization. |
MasterRecordId | String | Must provide the ID of the object that other records will be merged into. |
RecordToMergeIds | String | Minimum of one, maximum of two. The other record or records to be merged into the master record. |
Name | Type | Description |
Id | String | ID of the master record, the record into which the other records were merged. |
Success | String | Indicates whether the merge was successful (true) or not (false). |
Errors_statusCode | String | If an error occurred during the merge() call, an array of one or more Error objects providing the error code and description. |
Errors_message | String | If an error occurred during the merge() call, an array of one or more Error objects providing the error code and description. |
MergedRecordIds | String | ID of the records that were merged into the master record. If successful, the values match mergeRequest.recordToMergeIds. |
UpdatedRelatedIds | String | ID of all related records that were moved (reparented) as a result of the merge, and that are viewable by the user sending the merge call. |
Deploys file representations of components into an org by creating, updating or deleting the components they represent. To be used after executing MetadataRetrieve Stored Procedure.
Name | Type | Description |
FullPath | String | The full path to the zip file to upload/deploy. For instance: C:/Users/admin/Documents/deployment.zip. |
AllowMissingFiles | String | Defaults to false. Specifies whether a deployment can still succeed if files that are specified in package.xml are not in the .zip file. |
AutoUpdatePackage | String | Defaults to false. If a file is in the .zip file but not specified in package.xml, specifies whether the file is automatically added to the package. A MetadataRetrieve() is issued with the updated package.xml that includes the .zip file. |
IgnoreWarnings | String | Defaults to false. Indicates whether deployments with warnings complete successfully or not. NOTE: Do not set this argument to true for deployments to production organizations. |
RollbackOnError | String | Defaults to false. Indicates whether any failure causes a complete rollback or not. |
RunAllTests | String | Defaults to false. Set to true to run all Apex tests after deployment, including tests that originate from installed managed packages. |
RunTests | String | A list of Apex tests to run during deployment. Specify the class name, one name per instance. The class name can also specify a namespace with a dot notation. NOTE: To use this option, set testLevel to RunSpecifiedTests. |
SinglePackage | String | Defaults to false. Indicates whether the specified .zip file points to a directory structure with a single package (true) or a set of packages. |
TestLevel | String | Specifies which tests are run as part of a deployment. The test level is enforced regardless of the types of components that are present in the deployment package. Available values are 'NoTestRun', 'RunSpecifiedTests', 'RunLocalTests' and 'RunAllTestsInOrg'. |
Name | Type | Description |
JobId | String | The JobId for Deploy operation. |
Success | String | Whether the deploy was successful or not. |
Status | String | The Status of the deployment. |
IgnoreWarnings | String | Specifies whether a deployment should continue even if the deployment generates warnings. |
NumberComponentErrors | String | The number of components that generated errors during this deployment. |
NumberComponentsDeployed | String | The number of components deployed in the deployment process. |
NumberComponentsTotal | String | The total number of components in the deployment. |
NumberTestErrors | String | The number of Apex tests that have generated errors during this deployment. |
NumberTestsCompleted | String | The number of completed Apex tests for this deployment. |
NumberTestsTotal | String | The total number of Apex tests for this deployment. |
Used to retrieve additional details about MetadataDeploy job. Can be used after executing MetadataDeploy Stored Procedure.
Name | Type | Description |
JobId | String | The JobId for Deploy operation. |
Name | Type | Description |
ComponentFailures_changed | String | If true, the component was changed as a result of this deployment. If false, the deployed component was the same as the corresponding component already in the organization. |
ComponentFailures_componentType | String | The metadata type of the component in this deployment. |
ComponentFailures_created | String | If true, the component was created as a result of this deployment. If false, the component was either deleted or modified as a result of the deployment. |
ComponentFailures_createdDate | String | The date and time when the component was created as a result of this deployment. |
ComponentFailures_deleted | String | If true, the component was deleted as a result of this deployment. If false, the component was either new or modified as result of the deployment. |
ComponentFailures_fileName | String | The name of the file in the .zip file used to deploy this component. |
ComponentFailures_fullName | String | The full name of the component. |
ComponentFailures_problem | String | Description of the problem that caused the compile to fail. |
ComponentFailures_problemType | String | Indicates the problem type. Valid values are 'Warning' and 'Error'. |
ComponentFailures_success | String | Indicates whether the component was successfully deployed (true) or not (false). |
ComponentSuccesses_changed | String | If true, the component was changed as a result of this deployment. If false, the deployed component was the same as the corresponding component already in the organization. |
ComponentSuccesses_componentType | String | The metadata type of the component in this deployment. |
ComponentSuccesses_created | String | If true, the component was created as a result of this deployment. If false, the component was either deleted or modified as a result of the deployment. |
ComponentSuccesses_createdDate | String | The date and time when the component was created as a result of this deployment. |
ComponentSuccesses_deleted | String | If true, the component was deleted as a result of this deployment. If false, the component was either new or modified as result of the deployment. |
ComponentSuccesses_fileName | String | The name of the file in the .zip file used to deploy this component. |
ComponentSuccesses_fullName | String | The full name of the component. |
ComponentSuccesses_id | String | ID of the component being deployed. |
ComponentSuccesses_success | String | Indicates whether the component was successfully deployed (true) or not (false). |
NumTestsRun | String | The number of unit tests that were run. |
NumFailures | String | The number of failures for the unit tests. |
TotalTime | String | The total cumulative time spent running tests, in milliseconds. |
Retrieve file representations of components in an organization.
Name | Type | Description |
PackageNames | String | A list of package names to be retrieved. If you are retrieving only unpackaged components, do not specify a name here. You can retrieve packaged and unpackaged components in the same retrieve. |
SinglePackage | String | Defaults to false. Specifies whether only a single package is being retrieved or not. If false, then more than one package is being retrieved. |
SpecificFiles | String | A list of file names to be retrieved. If a value is specified for this property, packageNames must be set to null and singlePackage must be set to true. |
ManifestLocation | String | Specifies which metadata components to retrieve as part of a Retrieve call. It should point to a .xml file. Sample package.xml files can be found here: https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/manifest_samples.htm. If not specified, it defaults to retrieve all custom objects. |
DownloadLocation | String | The local path to save the zip file to. If not specified, the current execution path is used. |
Name | Type | Description |
Success | String | Whether the retrieve was successful or not. |
FullPath | String | The full path (including name) of the downloaded file. |
Gets data from Salesforce using query batch. Only batches created in CSV format are supported. Note that the outputs of this stored procedure are dynamic and depend on the Query input.
Name | Type | Description |
Query | String | The query to be executed using the BULK API. It can either be a SQL query or SOQL query depending on the QueryMode input. Query parameter is required if job id and batch id are not specified. |
QueryMode | String | Indicates the nature of the query to be executed. If it is a SQL query, it will be processed client-side in case of unsupported elements. In case of SOQL query it will directly be sent to Salesforce as is. Note that SOQL query does not support the following: COUNT, ROLLUP, SUM, GROUP BY CUBE, OFFSET, Nested SOQL queries, Relationship fields. Also, Bulk API cannot access or query compound address or compound geolocation fields. Columns name should be used instead of wildcard (*) in SOQL mode because it is not supported.
The allowed values are SQL, SOQL. The default value is SOQL. |
JobId | String | The id of the job. If this parameter is specified, batch id should be specified too. |
BatchId | String | The id of the batch. If this parameter is specified, job id should be specified too. |
ChunkSize | String | Salesforce recommends that you enable chunking when querying tables with more than 10 million records or when a bulk query consistently times out. If chunksize is specified the query, result will be splited into multiple batches. Set the value equal to 0 to disable spliting the result into chunks. The maximum size of the chunk cannot be more than 250000
The default value is 30000. |
ConcurrencyMode | String | The concurrency mode for the job. The valid values are Parallel or Serial. Parallel: Process batches in parallel mode which is the default value. Serial: Process batches in serial mode. Processing in parallel can cause database contention. When this is severe, the job may fail. If you experience this issue, submit the job with serial concurrency mode. This guarantees that batches are processed one at a time. Note that using this option may significantly increase the processing time for a job.
The allowed values are Parallel, Serial. The default value is Parallel. |
SkipErrors | String | This boolean parameter indicates if the provider should skip failed batches and get results for completed batches.
The allowed values are true, false. The default value is false. |
Rows@Next | String | This is used to page through multiple pages of results and should not be set manually. |
Name | Type | Description |
QueryJobId | String | The Id of the job. |
QueryBatchId | String | The Id of the batch. |
Restores from Salesforce's RecycleBin a deleted record.
To restore an object from Salesforce's recycle bin you need to use one of the following examples:
EXECUTE Undelete Id = '1'
INSERT INTO Account#TEMP (ID) VALUES (1) INSERT INTO Account#TEMP (ID) VALUES (2) INSERT INTO Account#TEMP (ID) VALUES (3) EXECUTE Undelete Id = 'Account#TEMP'
EXECUTE Undelete XML = '<undelete xmlns="urn:enterprise.soap.sforce.com"> <ids>1</ids> <ids>2</ids> <ids>3</ids> </undelete>'
Name | Type | Description |
ID | String | The Id of the object that has been deleted. This or XML input are required. |
XML | String | List of ids formatted in XML. This or ID input are required. |
Name | Type | Description |
Success | String | Returns true if the object is restored successfully. |
ID | String | The Id of the restored object/s, if the operation is successful. |
You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.
The following tables return database metadata for Salesforce:
The following tables return information about how to connect to and query the data source:
The following table returns query statistics for data modification queries, including batch operations::
Lists the available databases.
The following query retrieves all databases determined by the connection string:
SELECT * FROM sys_catalogs
Name | Type | Description |
CatalogName | String | The database name. |
Lists the available schemas.
The following query retrieves all available schemas:
SELECT * FROM sys_schemas
Name | Type | Description |
CatalogName | String | The database name. |
SchemaName | String | The schema name. |
Lists the available tables.
The following query retrieves the available tables and views:
SELECT * FROM sys_tables
Name | Type | Description |
CatalogName | String | The database containing the table or view. |
SchemaName | String | The schema containing the table or view. |
TableName | String | The name of the table or view. |
TableType | String | The table type (table or view). |
Description | String | A description of the table or view. |
IsUpdateable | Boolean | Whether the table can be updated. |
Describes the columns of the available tables and views.
The following query returns the columns and data types for the Account table:
SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Account'
Name | Type | Description |
CatalogName | String | The name of the database containing the table or view. |
SchemaName | String | The schema containing the table or view. |
TableName | String | The name of the table or view containing the column. |
ColumnName | String | The column name. |
DataTypeName | String | The data type name. |
DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
Length | Int32 | The storage size of the column. |
DisplaySize | Int32 | The designated column's normal maximum width in characters. |
NumericPrecision | Int32 | The maximum number of digits in numeric data. The column length in characters for character and date-time data. |
NumericScale | Int32 | The column scale or number of digits to the right of the decimal point. |
IsNullable | Boolean | Whether the column can contain null. |
Description | String | A brief description of the column. |
Ordinal | Int32 | The sequence number of the column. |
IsAutoIncrement | String | Whether the column value is assigned in fixed increments. |
IsGeneratedColumn | String | Whether the column is generated. |
IsHidden | Boolean | Whether the column is hidden. |
IsArray | Boolean | Whether the column is an array. |
IsReadOnly | Boolean | Whether the column is read-only. |
IsKey | Boolean | Indicates whether a field returned from sys_tablecolumns is the primary key of the table. |
Lists the available stored procedures.
The following query retrieves the available stored procedures:
SELECT * FROM sys_procedures
Name | Type | Description |
CatalogName | String | The database containing the stored procedure. |
SchemaName | String | The schema containing the stored procedure. |
ProcedureName | String | The name of the stored procedure. |
Description | String | A description of the stored procedure. |
ProcedureType | String | The type of the procedure, such as PROCEDURE or FUNCTION. |
Describes stored procedure parameters.
The following query returns information about all of the input parameters for the CreateJob stored procedure:
SELECT * FROM sys_procedureparameters WHERE ProcedureName='CreateJob' AND Direction=1 OR Direction=2
Name | Type | Description |
CatalogName | String | The name of the database containing the stored procedure. |
SchemaName | String | The name of the schema containing the stored procedure. |
ProcedureName | String | The name of the stored procedure containing the parameter. |
ColumnName | String | The name of the stored procedure parameter. |
Direction | Int32 | An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters. |
DataTypeName | String | The name of the data type. |
DataType | Int32 | An integer indicating the data type. This value is determined at run time based on the environment. |
Length | Int32 | The number of characters allowed for character data. The number of digits allowed for numeric data. |
NumericPrecision | Int32 | The maximum precision for numeric data. The column length in characters for character and date-time data. |
NumericScale | Int32 | The number of digits to the right of the decimal point in numeric data. |
IsNullable | Boolean | Whether the parameter can contain null. |
IsRequired | Boolean | Whether the parameter is required for execution of the procedure. |
IsArray | Boolean | Whether the parameter is an array. |
Description | String | The description of the parameter. |
Ordinal | Int32 | The index of the parameter. |
Describes the primary and foreign keys.
The following query retrieves the primary key for the Account table:
SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Account'
Name | Type | Description |
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
IsKey | Boolean | Whether the column is a primary key in the table referenced in the TableName field. |
IsForeignKey | Boolean | Whether the column is a foreign key referenced in the TableName field. |
PrimaryKeyName | String | The name of the primary key. |
ForeignKeyName | String | The name of the foreign key. |
ReferencedCatalogName | String | The database containing the primary key. |
ReferencedSchemaName | String | The schema containing the primary key. |
ReferencedTableName | String | The table containing the primary key. |
ReferencedColumnName | String | The column name of the primary key. |
Describes the foreign keys.
The following query retrieves all foreign keys which refer to other tables:
SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
Name | Type | Description |
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
PrimaryKeyName | String | The name of the primary key. |
ForeignKeyName | String | The name of the foreign key. |
ReferencedCatalogName | String | The database containing the primary key. |
ReferencedSchemaName | String | The schema containing the primary key. |
ReferencedTableName | String | The table containing the primary key. |
ReferencedColumnName | String | The column name of the primary key. |
ForeignKeyType | String | Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key. |
Describes the primary keys.
The following query retrieves the primary keys from all tables and views:
SELECT * FROM sys_primarykeys
Name | Type | Description |
CatalogName | String | The name of the database containing the key. |
SchemaName | String | The name of the schema containing the key. |
TableName | String | The name of the table containing the key. |
ColumnName | String | The name of the key column. |
KeySeq | String | The sequence number of the primary key. |
KeyName | String | The name of the primary key. |
Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.
The following query retrieves all indexes that are not primary keys:
SELECT * FROM sys_indexes WHERE IsPrimary='false'
Name | Type | Description |
CatalogName | String | The name of the database containing the index. |
SchemaName | String | The name of the schema containing the index. |
TableName | String | The name of the table containing the index. |
IndexName | String | The index name. |
ColumnName | String | The name of the column associated with the index. |
IsUnique | Boolean | True if the index is unique. False otherwise. |
IsPrimary | Boolean | True if the index is a primary key. False otherwise. |
Type | Int16 | An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3). |
SortOrder | String | The sort order: A for ascending or D for descending. |
OrdinalPosition | Int16 | The sequence number of the column in the index. |
Returns information on the available connection properties and those set in the connection string.
When querying this table, the config connection string should be used:
jdbc:cdata:salesforce:config:
This connection string enables you to query this table without a valid connection.
The following query retrieves all connection properties that have been set in the connection string or set through a default value:
SELECT * FROM sys_connection_props WHERE Value <> ''
Name | Type | Description |
Name | String | The name of the connection property. |
ShortDescription | String | A brief description. |
Type | String | The data type of the connection property. |
Default | String | The default value if one is not explicitly set. |
Values | String | A comma-separated list of possible values. A validation error is thrown if another value is specified. |
Value | String | The value you set or a preconfigured default. |
Required | Boolean | Whether the property is required to connect. |
Category | String | The category of the connection property. |
IsSessionProperty | String | Whether the property is a session property, used to save information about the current connection. |
Sensitivity | String | The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms. |
PropertyName | String | A camel-cased truncated form of the connection property name. |
Ordinal | Int32 | The index of the parameter. |
CatOrdinal | Int32 | The index of the parameter category. |
Hierarchy | String | Shows dependent properties associated that need to be set alongside this one. |
Visible | Boolean | Informs whether the property is visible in the connection UI. |
ETC | String | Various miscellaneous information about the property. |
Describes the SELECT query processing that the Cloud can offload to the data source.
See SQL Compliance for SQL syntax details.
Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.
Name | Description | Possible Values |
AGGREGATE_FUNCTIONS | Supported aggregation functions. | AVG, COUNT, MAX, MIN, SUM, DISTINCT |
COUNT | Whether COUNT function is supported. | YES, NO |
IDENTIFIER_QUOTE_OPEN_CHAR | The opening character used to escape an identifier. | [ |
IDENTIFIER_QUOTE_CLOSE_CHAR | The closing character used to escape an identifier. | ] |
SUPPORTED_OPERATORS | A list of supported SQL operators. | =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR |
GROUP_BY | Whether GROUP BY is supported, and, if so, the degree of support. | NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE |
OJ_CAPABILITIES | The supported varieties of outer joins supported. | NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS |
OUTER_JOINS | Whether outer joins are supported. | YES, NO |
SUBQUERIES | Whether subqueries are supported, and, if so, the degree of support. | NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED |
STRING_FUNCTIONS | Supported string functions. | LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE |
NUMERIC_FUNCTIONS | Supported numeric functions. | ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE |
TIMEDATE_FUNCTIONS | Supported date/time functions. | NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT |
REPLICATION_SKIP_TABLES | Indicates tables skipped during replication. | |
REPLICATION_TIMECHECK_COLUMNS | A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication. | |
IDENTIFIER_PATTERN | String value indicating what string is valid for an identifier. | |
SUPPORT_TRANSACTION | Indicates if the provider supports transactions such as commit and rollback. | YES, NO |
DIALECT | Indicates the SQL dialect to use. | |
KEY_PROPERTIES | Indicates the properties which identify the uniform database. | |
SUPPORTS_MULTIPLE_SCHEMAS | Indicates if multiple schemas may exist for the provider. | YES, NO |
SUPPORTS_MULTIPLE_CATALOGS | Indicates if multiple catalogs may exist for the provider. | YES, NO |
DATASYNCVERSION | The CData Data Sync version needed to access this driver. | Standard, Starter, Professional, Enterprise |
DATASYNCCATEGORY | The CData Data Sync category of this driver. | Source, Destination, Cloud Destination |
SUPPORTSENHANCEDSQL | Whether enhanced SQL functionality beyond what is offered by the API is supported. | TRUE, FALSE |
SUPPORTS_BATCH_OPERATIONS | Whether batch operations are supported. | YES, NO |
SQL_CAP | All supported SQL capabilities for this driver. | SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX |
PREFERRED_CACHE_OPTIONS | A string value specifies the preferred cacheOptions. | |
ENABLE_EF_ADVANCED_QUERY | Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. | YES, NO |
PSEUDO_COLUMNS | A string array indicating the available pseudo columns. | |
MERGE_ALWAYS | If the value is true, The Merge Mode is forcibly executed in Data Sync. | TRUE, FALSE |
REPLICATION_MIN_DATE_QUERY | A select query to return the replicate start datetime. | |
REPLICATION_MIN_FUNCTION | Allows a provider to specify the formula name to use for executing a server side min. | |
REPLICATION_START_DATE | Allows a provider to specify a replicate startdate. | |
REPLICATION_MAX_DATE_QUERY | A select query to return the replicate end datetime. | |
REPLICATION_MAX_FUNCTION | Allows a provider to specify the formula name to use for executing a server side max. | |
IGNORE_INTERVALS_ON_INITIAL_REPLICATE | A list of tables which will skip dividing the replicate into chunks on the initial replicate. | |
CHECKCACHE_USE_PARENTID | Indicates whether the CheckCache statement should be done against the parent key column. | TRUE, FALSE |
CREATE_SCHEMA_PROCEDURES | Indicates stored procedures that can be used for generating schema files. |
The following query retrieves the operators that can be used in the WHERE clause:
SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.
Name | Type | Description |
NAME | String | A component of SQL syntax, or a capability that can be processed on the server. |
VALUE | String | Detail on the supported SQL or SQL syntax. |
Returns information about attempted modifications.
The following query retrieves the Ids of the modified rows in a batch operation:
SELECT * FROM sys_identity
Name | Type | Description |
Id | String | The database-generated Id returned from a data modification operation. |
Batch | String | An identifier for the batch. 1 for a single operation. |
Operation | String | The result of the operation in the batch: INSERTED, UPDATED, or DELETED. |
Message | String | SUCCESS or an error message if the update in the batch failed. |
The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.
For more information on establishing a connection, see Establishing a Connection.
Property | Description |
AuthScheme | The type of authentication to use when connecting to Salesforce. |
User | The Salesforce user account used to authenticate. |
Password | The password used to authenticate the user. |
SecurityToken | The security token used to authenticate access to the Salesforce account. |
UseSandbox | A boolean determining if the connection should be made to a Salesforce sandbox account. |
Property | Description |
APIVersion | The version of the Salesforce API used. |
LoginURL | URL to the Salesforce server used for logging in. |
Property | Description |
SSOLoginURL | The identity provider's login URL. |
SSOProperties | Additional properties required to connect to the identity provider in a semicolon-separated list. |
SSOExchangeUrl | The URL used for consuming the SAML response and exchanging it for service specific credentials. |
Property | Description |
UseBulkAPI | Whether to use the synchronous SOAP API or the asynchronous Bulk API. |
BulkAPIConcurrencyMode | The concurrency mode for processing bulk rows with BULK API v1. |
BulkPollingInterval | The time interval in milliseconds between requests that check the availability of the bulk query response. The default value is 500 ms. |
BulkQueryTimeout | The timeout in minutes for which the provider will wait for a bulk query response. The default value is 25 minutes. |
WaitForBulkResults | Whether to wait for bulk results when using the asynchronous API. Only active when UseBulkAPI is true. |
Property | Description |
UseToolingAPI | Whether to use the Salesforce Tooling API. |
Property | Description |
OAuthClientId | The client Id assigned when you register your application with an OAuth authorization server. |
OAuthClientSecret | The client secret assigned when you register your application with an OAuth authorization server. |
OAuthGrantType | The grant type for the OAuth flow. |
Property | Description |
OAuthJWTCert | The JWT Certificate store. |
OAuthJWTCertType | The type of key store containing the JWT Certificate. |
OAuthJWTCertPassword | The password for the OAuth JWT certificate. |
OAuthJWTCertSubject | The subject of the OAuth JWT certificate. |
OAuthJWTIssuer | The issuer of the Java Web Token. |
OAuthJWTSubject | The user subject for which the application is requesting delegated access. |
Property | Description |
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
Property | Description |
Verbosity | The verbosity level that determines the amount of detail included in the log file. |
Property | Description |
BrowsableSchemas | This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC. |
Property | Description |
AllOrNone | A boolean indicating if you would like all inserts, updates, or deletes to fail in a request if even a single record fails. |
ArchiveMode | Boolean indicating whether to include deleted and archived records with a standard SELECT query. |
ContinueOnAlterException | Whether you want to continue after a ALTER statement has failed. |
ExposeConceptualEntities | Boolean determining if the Salesforce record types / conceptual entities should be exposed as tables. |
FilterScope | Optional scope to limit the records returned from queries. |
IncludeMetadataDescription | Set this property to a value other than NONE if you want to retrieve the descriptions for columns, tables or both of them from the Metadata API. |
IncludeReports | Whether to expose Salesforce Reports as views. |
MaxRows | Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses. |
PseudoColumns | This property indicates whether or not to include pseudo columns as columns to the table. |
QueryPassthrough | Whether to accept SOQL queries. |
RemoveBOMCharacter | Specifies whether to remove the BOM character (char)0xfeff from the content. |
ReplaceInvalidUTF8Chars | Specifies whether to replace invalid UTF8 characters with a '?'. |
ServerSideAggregation | A boolean determining if server side aggregation should be used. |
SessionTimeout | The time in minutes for which a Salesforce login session is reused. |
SkipFormulaFields | Set to true if formula fields should be skipped when listing columns. |
SortColumns | Set to true to sort table columns instead of reporting them in the Salesforce order. |
Timeout | The value in seconds until the timeout error is thrown, canceling the operation. |
UseDisplayNames | Boolean determining if the display names for the columns should be used instead of the API names. |
This section provides a complete list of the Authentication properties you can configure in the connection string for this provider.
Property | Description |
AuthScheme | The type of authentication to use when connecting to Salesforce. |
User | The Salesforce user account used to authenticate. |
Password | The password used to authenticate the user. |
SecurityToken | The security token used to authenticate access to the Salesforce account. |
UseSandbox | A boolean determining if the connection should be made to a Salesforce sandbox account. |
The type of authentication to use when connecting to Salesforce.
string
"Auto"
The Salesforce user account used to authenticate.
string
""
Together with Password, this field is used to authenticate against the Salesforce server.
The password used to authenticate the user.
string
""
The User and Password are together used to authenticate with the server.
The security token used to authenticate access to the Salesforce account.
string
""
Together with User and Password, this field can be used to authenticate against the Salesforce server. This is only required if your organization is setup to require it. A security token can be obtained by going to your profile information and resetting your security token. If your password is reset, you will also need to reset the security token.
A boolean determining if the connection should be made to a Salesforce sandbox account.
bool
false
To connect to a Salesforce sandbox account, set UseSandbox = true and append the sandbox name to the end of the user name. For example, if your user name is "user", and sandbox name in Salesforce is "sandbox", the specified User should appear as "user.sandbox".
This section provides a complete list of the Connection properties you can configure in the connection string for this provider.
Property | Description |
APIVersion | The version of the Salesforce API used. |
LoginURL | URL to the Salesforce server used for logging in. |
The version of the Salesforce API used.
string
"58.0"
The Salesforce API version used by default is 58.0.
URL to the Salesforce server used for logging in.
string
""
URL to the Salesforce server used for logging in. Defaults to https://login.salesforce.com/services/Soap/c/58.0. This should only be changed if your organization uses a custom login endpoint.
This section provides a complete list of the SSO properties you can configure in the connection string for this provider.
Property | Description |
SSOLoginURL | The identity provider's login URL. |
SSOProperties | Additional properties required to connect to the identity provider in a semicolon-separated list. |
SSOExchangeUrl | The URL used for consuming the SAML response and exchanging it for service specific credentials. |
The identity provider's login URL.
string
""
The identity provider's login URL.
Additional properties required to connect to the identity provider in a semicolon-separated list.
string
""
Additional properties required to connect to the identity provider in a semicolon-separated list. is used in conjunction with the SSOLoginURL.
SSO configuration is discussed further in .
The URL used for consuming the SAML response and exchanging it for service specific credentials.
string
""
The CData Cloud will use the URL specified here to consume a SAML response and exchange it for service specific credentials. The retrieved credentials are the final piece during the SSO connection that are used to communicate with Salesforce.
This section provides a complete list of the BulkAPI properties you can configure in the connection string for this provider.
Property | Description |
UseBulkAPI | Whether to use the synchronous SOAP API or the asynchronous Bulk API. |
BulkAPIConcurrencyMode | The concurrency mode for processing bulk rows with BULK API v1. |
BulkPollingInterval | The time interval in milliseconds between requests that check the availability of the bulk query response. The default value is 500 ms. |
BulkQueryTimeout | The timeout in minutes for which the provider will wait for a bulk query response. The default value is 25 minutes. |
WaitForBulkResults | Whether to wait for bulk results when using the asynchronous API. Only active when UseBulkAPI is true. |
Whether to use the synchronous SOAP API or the asynchronous Bulk API.
bool
false
This property determines whether or not the asynchronous Bulk API is used for reads and writes to Salesforce. For reads, the driver will automatically create bulk query jobs and start returning results as they are available. Note that queries using a JOIN or aggregation are not supported in the Bulk API and therefore the driver will fall back to using the SOAP API for these queries. Jobs are closed automatically once they are complete or if there is a failure.
For writes back to Salesforce, up to 10000 records can be sent per batch. These requests will be processed asynchronously meaning the driver will not wait for Salesforce to process the results fully. You can query the following table to get information about the jobs and batches that were created:
SELECT * FROM [Info#TEMP]
The ID values returned from this can be used with GetJob, GetBatch, and GetBatchResults to check the status of the job and batches.
Note that when this property is set to false, the default, you can still modify multiple records simultaneously: The Cloud will perform batch processing through the Web Services API, which will synchronously return the status of your operations.
The concurrency mode for processing bulk rows with BULK API v1.
string
"Serial"
The concurrency mode for processing bulk rows with BULK API v1.
The time interval in milliseconds between requests that check the availability of the bulk query response. The default value is 500 ms.
string
"500"
The time interval between requests that check the availability of the bulk query response. When UseBulkAPI is set, the Cloud starts an asynchronous job in Salesforce when running a SELECT query. It then waits for the response to be ready by periodically polling the server to check status. This property controls the frequency of polling.
The timeout in minutes for which the provider will wait for a bulk query response. The default value is 25 minutes.
string
"25"
The timeout in minutes for which the Cloud will wait for a bulk query response. The default value is 25 minutes. When UseBulkAPI is set, the Cloud starts an asynchronous job in Salesforce when running a SELECT query. It then waits for the response to be ready by periodically polling the server to check status. This property controls the total time the Cloud will wait for a response.
Note that this property is very different from Timeout. The Timeout is an inactivity timeout that controls the time to wait for any response. This property controls the total length of time to wait for a bulk query to execute. ;
Whether to wait for bulk results when using the asynchronous API. Only active when UseBulkAPI is true.
bool
false
This property determines whether the Cloud will wait for bulk requests to report their status. By default this property is false and any INSERT, UPDATE or DELETE queries will complete as soon as they are submitted to Salesforce. When this property is true, the Cloud will wait for INSERT, UPDATE and DETETE queries to finish.
When this property is false, data modification queries will be faster but less detailed status information will be available. The LastResultInfo#TEMP table will list the creates batches and not the status of individual rows. Information about individual rows will only be availble if you execute the GetBatchResults stored procedure for each batch.
When this property is true, data modification queries will be slower but more status information will be available. The LastResultInfo#TEMP table will list the ID of each updated row, its status and any associated error messages.
This section provides a complete list of the ToolingAPI properties you can configure in the connection string for this provider.
Property | Description |
UseToolingAPI | Whether to use the Salesforce Tooling API. |
Whether to use the Salesforce Tooling API.
bool
false
This property determines whether or not the Tooling API is used for reads and writes.
This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.
Property | Description |
OAuthClientId | The client Id assigned when you register your application with an OAuth authorization server. |
OAuthClientSecret | The client secret assigned when you register your application with an OAuth authorization server. |
OAuthGrantType | The grant type for the OAuth flow. |
The client Id assigned when you register your application with an OAuth authorization server.
string
""
As part of registering an OAuth application, you will receive the OAuthClientId value, sometimes also called a consumer key, and a client secret, the OAuthClientSecret.
The client secret assigned when you register your application with an OAuth authorization server.
string
""
As part of registering an OAuth application, you will receive the OAuthClientId, also called a consumer key. You will also receive a client secret, also called a consumer secret. Set the client secret in the OAuthClientSecret property.
The grant type for the OAuth flow.
string
"CODE"
The following options are available: CODE,PASSWORD
This section provides a complete list of the JWT OAuth properties you can configure in the connection string for this provider.
Property | Description |
OAuthJWTCert | The JWT Certificate store. |
OAuthJWTCertType | The type of key store containing the JWT Certificate. |
OAuthJWTCertPassword | The password for the OAuth JWT certificate. |
OAuthJWTCertSubject | The subject of the OAuth JWT certificate. |
OAuthJWTIssuer | The issuer of the Java Web Token. |
OAuthJWTSubject | The user subject for which the application is requesting delegated access. |
The JWT Certificate store.
string
""
The name of the certificate store for the client certificate.
The OAuthJWTCertType field specifies the type of the certificate store specified by OAuthJWTCert. If the store is password protected, specify the password in OAuthJWTCertPassword.
OAuthJWTCert is used in conjunction with the OAuthJWTCertSubject field in order to specify client certificates. If OAuthJWTCert has a value, and OAuthJWTCertSubject is set, a search for a certificate is initiated. Please refer to the OAuthJWTCertSubject field for details.
Designations of certificate stores are platform-dependent.
The following are designations of the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
SPC | Software publisher certificates. |
In Java, the certificate store normally is a file containing certificates and optional private keys.
When the certificate store type is PFXFile, this property must be set to the name of the file. When the type is PFXBlob, the property must be set to the binary contents of a PFX file (i.e. PKCS12 certificate store).
The type of key store containing the JWT Certificate.
string
"PEMKEY_BLOB"
This property can take one of the following values:
USER | For Windows, this specifies that the certificate store is a certificate store owned by the current user. Note: This store type is not available in Java. |
MACHINE | For Windows, this specifies that the certificate store is a machine store. Note: this store type is not available in Java. |
PFXFILE | The certificate store is the name of a PFX (PKCS12) file containing certificates. |
PFXBLOB | The certificate store is a string (base-64-encoded) representing a certificate store in PFX (PKCS12) format. |
JKSFILE | The certificate store is the name of a Java key store (JKS) file containing certificates. Note: this store type is only available in Java. |
JKSBLOB | The certificate store is a string (base-64-encoded) representing a certificate store in Java key store (JKS) format. Note: this store type is only available in Java. |
PEMKEY_FILE | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
PEMKEY_BLOB | The certificate store is a string (base64-encoded) that contains a private key and an optional certificate. |
PUBLIC_KEY_FILE | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
PUBLIC_KEY_BLOB | The certificate store is a string (base-64-encoded) that contains a PEM- or DER-encoded public key certificate. |
SSHPUBLIC_KEY_FILE | The certificate store is the name of a file that contains an SSH-style public key. |
SSHPUBLIC_KEY_BLOB | The certificate store is a string (base-64-encoded) that contains an SSH-style public key. |
P7BFILE | The certificate store is the name of a PKCS7 file containing certificates. |
PPKFILE | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
XMLFILE | The certificate store is the name of a file that contains a certificate in XML format. |
XMLBLOB | The certificate store is a string that contains a certificate in XML format. |
The password for the OAuth JWT certificate.
string
""
If the certificate store is of a type that requires a password, this property is used to specify that password in order to open the certificate store.
The subject of the OAuth JWT certificate.
string
"*"
When loading a certificate the subject is used to locate the certificate in the store.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks the first certificate in the certificate store.
The certificate subject is a comma separated list of distinguished name fields and values. For instance "CN=www.server.com, OU=test, C=US, [email protected]". Common fields and their meanings are displayed below.
Field | Meaning |
CN | Common Name. This is commonly a host name like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma it must be quoted.
The issuer of the Java Web Token.
string
""
The issuer of the Java Web Token. Set this to the OAuth Client ID.
The user subject for which the application is requesting delegated access.
string
""
The user subject for which the application is requesting delegated access. Set this to the username (email address) of the user who is permitted to use the OAuth App.
This section provides a complete list of the SSL properties you can configure in the connection string for this provider.
Property | Description |
SSLServerCert | The certificate to be accepted from the server when connecting using TLS/SSL. |
The certificate to be accepted from the server when connecting using TLS/SSL.
string
""
If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.
This property can take the following forms:
Description | Example |
A full PEM Certificate (example shortened for brevity) | -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE----- |
A path to a local file containing the certificate | C:\cert.cer |
The public key (example shortened for brevity) | -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY----- |
The MD5 Thumbprint (hex values can also be either space or colon separated) | ecadbdda5a1529c58a1e9e09828d70e4 |
The SHA1 Thumbprint (hex values can also be either space or colon separated) | 34a929226ae0819f2ec14b4a3d904f801cbb150d |
If not specified, any certificate trusted by the machine is accepted.
Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.
This section provides a complete list of the Logging properties you can configure in the connection string for this provider.
Property | Description |
Verbosity | The verbosity level that determines the amount of detail included in the log file. |
The verbosity level that determines the amount of detail included in the log file.
string
"1"
The verbosity level determines the amount of detail that the Cloud reports to the Logfile. Verbosity levels from 1 to 5 are supported. These are detailed in the Logging page.
This section provides a complete list of the Schema properties you can configure in the connection string for this provider.
Property | Description |
BrowsableSchemas | This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC. |
This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.
string
""
Listing the schemas from databases can be expensive. Providing a list of schemas in the connection string improves the performance.
This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.
Property | Description |
AllOrNone | A boolean indicating if you would like all inserts, updates, or deletes to fail in a request if even a single record fails. |
ArchiveMode | Boolean indicating whether to include deleted and archived records with a standard SELECT query. |
ContinueOnAlterException | Whether you want to continue after a ALTER statement has failed. |
ExposeConceptualEntities | Boolean determining if the Salesforce record types / conceptual entities should be exposed as tables. |
FilterScope | Optional scope to limit the records returned from queries. |
IncludeMetadataDescription | Set this property to a value other than NONE if you want to retrieve the descriptions for columns, tables or both of them from the Metadata API. |
IncludeReports | Whether to expose Salesforce Reports as views. |
MaxRows | Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses. |
PseudoColumns | This property indicates whether or not to include pseudo columns as columns to the table. |
QueryPassthrough | Whether to accept SOQL queries. |
RemoveBOMCharacter | Specifies whether to remove the BOM character (char)0xfeff from the content. |
ReplaceInvalidUTF8Chars | Specifies whether to replace invalid UTF8 characters with a '?'. |
ServerSideAggregation | A boolean determining if server side aggregation should be used. |
SessionTimeout | The time in minutes for which a Salesforce login session is reused. |
SkipFormulaFields | Set to true if formula fields should be skipped when listing columns. |
SortColumns | Set to true to sort table columns instead of reporting them in the Salesforce order. |
Timeout | The value in seconds until the timeout error is thrown, canceling the operation. |
UseDisplayNames | Boolean determining if the display names for the columns should be used instead of the API names. |
A boolean indicating if you would like all inserts, updates, or deletes to fail in a request if even a single record fails.
bool
false
The AllOrNone property is not available when using Bulk API requests.
Boolean indicating whether to include deleted and archived records with a standard SELECT query.
bool
false
By default, Salesforce will only return non-deleted and unarchived records from a SELECT query. With this property set to True, the Cloud will use the queryAll endpoint which will return records that are marked as deleted or archived as well as the normal records.
Whether you want to continue after a ALTER statement has failed.
bool
false
The ALTER statement is split into multiple alter statements when more than 10 columns are present in the statement to facilitate an API limit where ALTER statements can include a maximum of 10 columns being modified/added. If true, when an individual statement fails, the Cloud continues to evaulate the others. If false, the failure of any statement will result in an error instead of a skip.
Boolean determining if the Salesforce record types / conceptual entities should be exposed as tables.
bool
false
Boolean determining if the Salesforce record types / conceptual entities should be exposed as tables.
Each Salesforce object can have its record types. e.g: The Account object can have records of type: Partner, Customer.
If this property is set to true, the driver will expose one additional table for each record type: Account_Partner, Account_Customer.
Optional scope to limit the records returned from queries.
string
"None"
This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team.
This property appends the "USING SCOPE" keyword in the SOQL query.
Set this property to a value other than NONE if you want to retrieve the descriptions for columns, tables or both of them from the Metadata API.
string
"NONE"
Note: Extra API calls will be executed if this property is set to a value other than NONE.
Set the value of this property to Columns if you want to retrieve the descriptions for every column from the Metadata API.
Set the value of this property to Tables if you want to retrieve the descriptions for every table from the Metadata API.
Set the value of this property to TablesAndColumns if you want to retrieve the descriptions for every table and their respective columns from the Metadata API.
Whether to expose Salesforce Reports as views.
bool
false
Whether to expose Salesforce Reports as views. Setting this property to true will expose Salesforce reports of type: TABULAR, SUMMARY, MATRIX as views.
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
int
-1
Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
This property indicates whether or not to include pseudo columns as columns to the table.
string
""
This setting is particularly helpful in Entity Framework, which does not allow you to set a value for a pseudo column unless it is a table column. The value of this connection setting is of the format "Table1=Column1, Table1=Column2, Table2=Column3". You can use the "*" character to include all tables and all columns; for example, "*=*".
Whether to accept SOQL queries.
bool
false
By default the Cloud accepts SQL queries and translates them into SOQL. If this option is set, then the Cloud will instead accept SOQL directly and pass it through to Salesforce.
Specifies whether to remove the BOM character (char)0xfeff from the content.
bool
false
Specifies whether to remove the BOM character (char)0xfeff from the content.
Specifies whether to replace invalid UTF8 characters with a '?'.
bool
false
Specifies whether to replace invalid UTF8 characters with a '?'
A boolean determining if server side aggregation should be used.
bool
true
By default, this will be set to true to offload as much as possible to the API. There are cases when setting ServerSideAggregation to false can fix some issues. For example, when trying to run an aggregation query on the non-primary key field and there are more than 2000 rows which will be returned (an error EXCEEDED_ID_LIMIT will be thrown). In that case, setting ServerSideAggregation to false will offload the task to the client side, and will fix the issue.
The time in minutes for which a Salesforce login session is reused.
string
"10"
The Cloud creates a login session with Salesforce based on the authentication credentials provided. This session is reused for subsequent queries until it times out. The SessionTimeout property allows you to control how long the login session is kept by the Cloud. You can set the SessionTimeout to 0 to disable login sessions; this will force the Cloud to authenticate each request.
This property useful when creating and reusing a Salesforce connection. The property only impacts SSO and Basic Authentication connections, and is not used for OAuth.
Set to true if formula fields should be skipped when listing columns.
bool
false
Set to true if formula fields should be skipped when listing columns.
Set to true to sort table columns instead of reporting them in the Salesforce order.
bool
false
By default the Cloud reports columns in the order that Salesforce reports them. If pseudo-columns are enabled, the Cloud will add them to the end of the column list.
When this option is enabled, the Cloud will report all columns (including pseudo-columns) in order according to their name.
The value in seconds until the timeout error is thrown, canceling the operation.
int
60
If Timeout = 0, operations do not time out. The operations run until they complete successfully or until they encounter an error condition.
If Timeout expires and the operation is not yet complete, the Cloud throws an exception.
Boolean determining if the display names for the columns should be used instead of the API names.
bool
false
Boolean determining if the display names for the columns should be used instead of the API names.