salesforce.types
Modules
Module salesforce.types
API
Definitions
ballerinax/salesforce.types Ballerina library
Overview
Salesforce is a leading customer relationship management (CRM) platform that helps businesses manage and streamline their sales, service, and marketing operations. The Ballerina Salesforce Connector is a project designed to enhance integration capabilities with Salesforce by providing a seamless connection for Ballerina. Notably, this Ballerina project incorporates record type definitions for the base types of Salesforce objects, offering a comprehensive and adaptable solution for developers working on Salesforce integration projects.
Setup Guide
To customize this project for your Salesforce account and include your custom SObjects, follow the steps below:
Step 1: Login to Your Salesforce Developer Account
Begin by logging into your Salesforce Developer Account.
Step 2: Generate Open API Specification for Your SObjects
Step 2.1: Initiate OpenAPI Document Generation
Use the following command to send a POST request to start the OpenAPI document generation process.
curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ https://MyDomainName.my.salesforce.com/services/data/vXX.X/async/specifications/oas3 \ -d '{"resources": ["*"]}'
Replace YOUR_ACCESS_TOKEN and MyDomainName with your actual access token and Salesforce domain. If successful, you'll receive a response with a URI. Extract the locator ID from the URI.
Step 2.2: Retrieve the OpenAPI Document
Send a GET request to fetch the generated OpenAPI document using the following command.
curl -X GET -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ https://MyDomainName.my.salesforce.com/services/data/vXX.X/async/specifications/oas3/LOCATOR_ID -o oas.json
Replace YOUR_ACCESS_TOKEN, MyDomainName, and LOCATOR_ID with your actual values.
Step 3: Configure Cluster Settings
To prevent Out-of-Memory (OOM) issues, execute the following command:
export JAVA_OPTS="$JAVA_OPTS -DmaxYamlCodePoints=99999999"
Generate the Ballerina project for the OpenAPI spec using the Ballerina Open API tool with the following commands.
- Create a new Ballerina project, naming the project as desired (e.g., custom_types, salesforce_types, etc.).
bal new custom_types
- Customize the package details by editing the
Ballerina.tomlfile. For instance, you can modify the [package] section as follows:
[package] org = "example" name = "salesforce.types" version = "0.1.0"
Feel free to replace "salesforce.types" with one of the suitable desired names like "custom.types" or "integration.types," or come up with your own unique package name.
- Move the OpenAPI spec into the newly created project directory and execute the following command:
bal openapi -i oas.json --mode client --client-methods resource
This will generate the Ballerina project structure, record types that correspond to the SObject definitions, and client methods based on the provided OpenAPI specification.
Step 4: Edit the Generated Client and Push it to Local Repository
Step 4.1 Delete the utils.bal and clients.bal files.
Step 4.2 Use the following commands to build, pack, and push the package:
bal pack bal push --repository=local
By following these steps, you can set up and customize the Ballerina Salesforce Connector for your Salesforce account with ease.
Quickstart
To use the salesforce.types module in your Ballerina application, modify the .bal file as follows:
Step 1: Import the package
Import ballerinax/salesforce.types module.
import ballerinax/salesforce; import ballerinax/salesforce.types;
Step 2: Instantiate a new client
Obtain the tokens using the following the ballerinax/salesforce connector set up guide. Create a salesforce:ConnectionConfig with the obtained OAuth2 tokens and initialize the connector with it.
salesforce:ConnectionConfig config = { baseUrl: baseUrl, auth: { clientId: clientId, clientSecret: clientSecret, refreshToken: refreshToken, refreshUrl: refreshUrl } }; salesforce:Client salesforce = new(config);
Step 3: Invoke the connector operation
Now you can utilize the available operations. Note that they are in the form of remote operations. Following is an example on how to create a record using the connector.
salesforce:Client salesforce = check new (config); stypes:AccountSObject response = { Name: "IT World", BillingCity: "New York" }; salesforce:CreationResponse response = check salesforce->create("Account", response);
Use following command to compile and run the Ballerina program.
bal run
Records
salesforce.types: AcceptedEventRelationSObject
Represents event participants (invitees or attendees) with the status Accepted for a given event.
Fields
- Id? string - Unique identifier for the record
- RelationId? string - Indicates the ID of the invitee.
- EventId? string - Indicates the ID of the event.
- RespondedDate? string - Indicates the most recent date and time when the invitee accepted an invitation to the event.
- Response? string - Indicates the content of the response field. Label is Comment.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Type? string - Indicates whether the invitee is a user, lead or contact, or resource.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- LastName? string - Last name of the individual
- FirstName? string - First name of the individual
- Salutation? string - Salutation for the individual
- Type? string - Type or category of the record
- ParentId? string - ID of the parent record
- BillingStreet? string - Billing street address
- BillingCity? string - Billing city
- BillingState? string - Billing state or province
- BillingPostalCode? string - Billing postal code
- BillingCountry? string - Billing country
- BillingLatitude? decimal - Latitude coordinate of the billing address
- BillingLongitude? decimal - Longitude coordinate of the billing address
- BillingGeocodeAccuracy? string - Accuracy level of the geocode for the billing address
- BillingAddress? record {} - Compound billing address field
- ShippingStreet? string - Shipping street address
- ShippingCity? string - Shipping city
- ShippingState? string - Shipping state or province
- ShippingPostalCode? string - Shipping postal code
- ShippingCountry? string - Shipping country
- ShippingLatitude? decimal - Latitude coordinate of the shipping address
- ShippingLongitude? decimal - Longitude coordinate of the shipping address
- ShippingGeocodeAccuracy? string - Accuracy level of the geocode for the shipping address
- ShippingAddress? record {} - Compound shipping address field
- Phone? string - Phone number
- Fax? string - Fax number
- AccountNumber? string - Account number
- Website? string - Website URL
- Sic? string - Standard Industrial Classification code
- Industry? string - Industry of the account
- AnnualRevenue? decimal - Annual revenue of the account
- NumberOfEmployees? int - Number of employees
- Ownership? string - Ownership type of the company
- TickerSymbol? string - Ticker symbol of the company
- Description? string - Description of the record
- Rating? string - Rating of the record
- Site? string - Site
- OwnerId? string - ID of the user who owns the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Jigsaw? string - Data.com key
- JigsawCompanyId? string - ID of the Data.com company
- CleanStatus? string - Status of the clean
- AccountSource? string - Source of the account
- DunsNumber? string - DUNS number of the company
- Tradestyle? string - Tradestyle
- NaicsCode? string - NAICS code of the company
- NaicsDesc? string - Description of the NAICS code
- YearStarted? string - Year the company was started
- SicDesc? string - Description of the SIC code
- DandbCompanyId? string - ID of the associated dandb company
- OperatingHoursId? string - ID of the associated operating hours
- CustomerPriority__c? string - Customer priority c
- SLA__c? string - SLA c
- Active__c? string - Active c
- NumberofLocations__c? decimal - Numberof locations c
- UpsellOpportunity__c? string - Upsell opportunity c
- SLASerialNumber__c? string - SLA serial number c
- SLAExpirationDate__c? string - SLA expiration date c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountCleanInfoSObject
Stores the metadata Data.com Clean uses to determine an account record’s clean status. AccountCleanInfo helps you automate the cleaning or related processing of account records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Field label is Account Clean Info Name. The name of the account. Maximum size is 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AccountId? string - The unique, system-generated ID assigned when the account record was created.
- LastMatchedDate? string - The date the account record was last matched and linked to a Data.com record.
- LastStatusChangedDate? string - The date on which the record’s Clean Status field value was last changed.
- LastStatusChangedById? string - The ID of who or what last changed the record’s Clean Status field value: a Salesforce user or a Clean job.
- IsInactive? boolean - Indicates whether the account has been reported to Data.com as Inactive (true) or not (false).
- CompanyName? string - The name of the company.
- Phone? string - The phone number for the account.
- Street? string - Details for the billing address of the account.
- City? string - Details for the billing address of the account.
- State? string - Details for the billing address of the account.
- PostalCode? string - Details for the billing address of the account.
- Country? string - Details for the billing address of the account.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of a billing address. Data not currently provided.
- Longitude? decimal - Used with Latitude to specify the precise geolocation of a billing address. Data not currently provided.
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - The compound form of the address. Read-only. See Address Compound Fields for details on compound address fields.
- Website? string - The website of the account.
- TickerSymbol? string - The stock market symbol for the account.
- AnnualRevenue? decimal - Estimated annual revenue of the account.
- NumberOfEmployees? int - The number of employees working at the account.
- Industry? string - The industry the account belongs to.
- Ownership? string - Ownership type for the account, for example Private, Public, or Subsidiary.
- DunsNumber? string - The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking.
- Sic? string - Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics.
- SicDescription? string - A brief description of an organization’s line of business, based on its SIC code.
- NaicsCode? string - The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy.
- NaicsDescription? string - A brief description of an organization’s line of business, based on its NAICS code.
- YearStarted? string - The year the company was established or the year when current ownership or management assumed control of the company.
- Fax? string - The account’s fax number.
- AccountSite? string - Information about the account’s location, such as single location, headquarters, or branch.
- Description? string - A description of the account.
- Tradestyle? string - A name, different from its legal name, that an organization can use for conducting business. Similar to “Doing business as” (DBA).
- DandBCompanyDunsNumber? string - The D-U-N-S Number on the D&B Company record (if any) that is linked to the account.
- DunsRightMatchGrade? string - The account’s DUNSRight match grade.
- DunsRightMatchConfidence? int - The account’s DUNSRight confidence code.
- CompanyStatusDataDotCom? string - The status of the company per Data.com. Values are: Company is In Business per Data.com or Company is Out of Business per Data.com.
- IsReviewedCompanyName? boolean - Indicates whether the account’s CompanyName field value is in a Reviewed state (true) or not (false).
- IsReviewedPhone? boolean - Indicates whether the account’s Phone field value is in a Reviewed state (true) or not (false).
- IsReviewedAddress? boolean - Indicates whether the account’s Address field value is in a Reviewed state (true) or not (false).
- IsReviewedWebsite? boolean - Indicates whether the account’s Website field value is in a Reviewed state (true) or not (false).
- IsReviewedTickerSymbol? boolean - Indicates whether the account’s TickerSymbol field value is in a Reviewed state (true) or not (false).
- IsReviewedAnnualRevenue? boolean - Indicates whether the account’s AnnualRevenue field value is in a Reviewed state (true) or not (false).
- IsReviewedNumberOfEmployees? boolean - Indicates whether the account’s NumberOfEmployees field value is in a Reviewed state (true) or not (false).
- IsReviewedIndustry? boolean - Indicates whether the account’s Industry field value is in a Reviewed state (true) or not (false).
- IsReviewedOwnership? boolean - Indicates whether the account’s Ownership field value is in a Reviewed state (true) or not (false).
- IsReviewedDunsNumber? boolean - Indicates whether the account’s DunsNumber field value is in a Reviewed state (true) or not (false).
- IsReviewedSic? boolean - Indicates whether the account’s Sic field value is in a Reviewed state (true) or not (false).
- IsReviewedSicDescription? boolean - Indicates whether the account’s SicDescription field value is in a Reviewed state (true) or not (false).
- IsReviewedNaicsCode? boolean - Indicates whether the account’s NaicsCode field value is in a Reviewed state (true) or not (false).
- IsReviewedNaicsDescription? boolean - Indicates whether the account’s NaicsDescription field value is in a Reviewed state (true) or not (false).
- IsReviewedYearStarted? boolean - Indicates whether the account’s YearStarted field value is in a Reviewed state (true) or not (false).
- IsReviewedFax? boolean - Indicates whether the account’s Fax field value is in a Reviewed state (true) or not (false).
- IsReviewedAccountSite? boolean - Indicates whether the account’s AccountSite field value is in a Reviewed state (true) or not (false).
- IsReviewedDescription? boolean - Indicates whether the account’s Description field value is in a Reviewed state (true) or not (false).
- IsReviewedTradestyle? boolean - Indicates whether the account’s Tradestyle field value is in a Reviewed state (true) or not (false).
- IsReviewedDandBCompanyDunsNumber? boolean - Indicates whether the account’s DandBCompanyID field value is in a Reviewed state (true) or not (false).
- IsDifferentCompanyName? boolean - Indicates whether the account’s AccountName field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentPhone? boolean - Indicates whether the account’s Phone field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentStreet? boolean - Indicates whether the account’s State field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCity? boolean - Indicates whether the account’s City field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentState? boolean - Indicates whether the account’s State field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentPostalCode? boolean - Indicates whether the account’s PostalCode field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCountry? boolean - Indicates whether the account’s Country field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentWebsite? boolean - Indicates whether the account’s Website field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentTickerSymbol? boolean - Indicates whether the account’s TickerSymbol field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentAnnualRevenue? boolean - Indicates whether the account’s AnnualRevenue field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentNumberOfEmployees? boolean - Indicates whether the account’s NumberOf Employees field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentIndustry? boolean - Indicates whether the account’s Industry field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentOwnership? boolean - Indicates whether the account’s Ownership field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentDunsNumber? boolean - Indicates whether the account’s DunsNumber field value is different from the D-U-N-S Number on its matched Data.com record (true) or not (false).
- IsDifferentSic? boolean - Indicates whether the account’s Sic field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentSicDescription? boolean - Indicates whether the account’s SicDescription field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentNaicsCode? boolean - Indicates whether the account’s NaicsCode field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentNaicsDescription? boolean - Indicates whether the account’s NaicsDescription field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentYearStarted? boolean - Indicates whether the account’s YearStarted field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentFax? boolean - Indicates whether the account’s Fax field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentAccountSite? boolean - Indicates whether the account’s AccountSite field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentDescription? boolean - Indicates whether the account’s Description field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentTradestyle? boolean - Indicates whether the account’s Tradestyle field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentDandBCompanyDunsNumber? boolean - Indicates whether the account’s DandBCompanyID field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentStateCode? boolean - Indicates whether the account’s State Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCountryCode? boolean - Indicates whether the account’s Country Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- CleanedByJob? boolean - Indicates whether the account record was cleaned by a Data.com Clean job (true) or not (false).
- CleanedByUser? boolean - Indicates whether the account record was cleaned by a Salesforce user (true) or not (false).
- IsFlaggedWrongCompanyName? boolean - Indicates whether the account’s CompanyName field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongPhone? boolean - Indicates whether the account’s Phone field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongAddress? boolean - Indicates whether the account’s Address field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongWebsite? boolean - Indicates whether the account’s Website field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongTickerSymbol? boolean - Indicates whether the account’s TickerSymbol field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongAnnualRevenue? boolean - Indicates whether the account’s AnnualRevenue field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongNumberOfEmployees? boolean - Indicates whether the account’s NumberOfEmployees field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongIndustry? boolean - Indicates whether the account’s Industry field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongOwnership? boolean - Indicates whether the account’s Ownership field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongDunsNumber? boolean - Indicates whether the account’s DunsNumber field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongSic? boolean - Indicates whether the account’s Sic field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongSicDescription? boolean - Indicates whether the account’s SicDescription field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongNaicsCode? boolean - Indicates whether the account’s NaicsCode field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongNaicsDescription? boolean - Indicates whether the account’s NaicsDescription field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongYearStarted? boolean - Indicates whether the account’s YearStarted field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongFax? boolean - Indicates whether the account’s Fax field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongAccountSite? boolean - Indicates whether the account’s AccountSite field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongDescription? boolean - Indicates whether the account’s Description field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongTradestyle? boolean - Indicates whether the account’s Tradestyle field value is flagged as wrong to Data.com (true) or not (false).
- DataDotComId? string - The ID Data.com maintains for the company.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountContactRoleChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- AccountId? string - ID of the associated account
- ContactId? string - ID of the associated contact
- Role? string - Role associated with the record
- IsPrimary? boolean - Indicates whether this is the primary record (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountContactRoleSObject
Represents the role that a Contact plays on an Account.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AccountId? string - Required. ID of the Account.
- ContactId? string - Required. ID of the Contact associated with this account.
- Role? string - Name of the role played by the Contact on this Account, such as Decision Maker, Approver, Buyer, and so on. Must be unique—there can't be multiple records in which the AccountId, ContactId, and Role values are identical. Different contacts can play the same role on the same account. A contact can play different roles on the same account.
- IsPrimary? boolean - Specifies whether the Contact plays the primary role on the Account (true) or not (false). Note that each account has only one primary contact role. Label is Primary. Default value is false.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AccountId? string - ID of the associated account
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountPartnerSObject
This object represents a partner relationship between two Account records. An AccountPartner record is created automatically when a Partner record is created for a partner relationship between two accounts.
Fields
- Id? string - Unique identifier for the record
- AccountFromId? string - ID of the main Account in the partner relationship.
- AccountToId? string - ID of the partner Account in the partner relationship.
- OpportunityId? string - ID of the opportunity in a partner relationship.
- Role? string - The UserRole that the partner Account has on the main Account. For example, Consultant or Distributor.
- IsPrimary? boolean - Indicates whether the AccountPartner is the main account’s primary partner (true) or not (false).
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ReversePartnerId? string - ID of the account in a partner relationship.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountShareSObject
Represents a sharing entry on an Account.
Fields
- Id? string - Unique identifier for the record
- AccountId? string - ID of the Account associated with this sharing entry. This field can't be updated.
- UserOrGroupId? string - ID of the User or Group that has been given access to the Account. This field can't be updated.
- AccountAccessLevel? string - Level of access that the User or Group has to the Account. The possible values are: Read Edit All (This value isn't valid for create or update calls.) This field must be set to an access level that is at least equal to the organization’s default Account access level. In addition, either this field, the OpportunityAccessLevel field, or the CaseAccessLevel field must be set higher than the organization’s default access level.
- OpportunityAccessLevel? string - Level of access that the User or Group has to opportunities associated with the Account. The possible values are: None Read Edit This field must be set to an access level that is at least equal to the organization’s default opportunity access level. This field can’t be updated via the API if the AccountAccessLevel field is set to All. You can't use the API to update this field for the associated Account owner. You must update the Account owner’s opportunityAccessLevel via the Salesforce user interface.
- CaseAccessLevel? string - Level of access that the User or Group has to cases associated with the account. The possible values are: None Read Edit This field must be set to an access level that is at least equal to the organization’s default CaseAccessLevel. This field can't be updated via the API if the AccountAccessLevel field is set to All. You can't update this field for the associated account owner via the API. You must update the account owner’s CaseAccessLevel via the Salesforce user interface.
- ContactAccessLevel? string - Level of access that the User or Group has to contacts associated with the account. The possible values are: None Read Edit This field must be set to an access level that is at least equal to the organization’s default ContactAccessLevel. This field can't be updated via the API if the ContactAccessLevel field is set to “Controlled by Parent.” You can't update this field for the associated account owner using the API. You must update the account owner’s ContactAccessLevel via the Salesforce user interface.
- RowCause? string - Reason that this sharing entry exists. You can only write to this field when its value is either omitted or set to Manual (default). You can create a value for this field in API versions 32.0 and later with the correct organization-wide sharing settings.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AccountSObject
Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners).
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- MasterRecordId? string - If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null.
- Name? string - Required. Label is Account Name. Name of the account. Maximum size is 255 characters. If the account has a record type of Person Account: This value is the concatenation of the FirstName, MiddleName, LastName, and Suffix of the associated person contact. You can't modify this value.
- Type? string - Type of account, for example, Customer, Competitor, or Partner.
- ParentId? string - ID of the parent object, if any.
- BillingStreet? string - Street address for the billing address of this account.
- BillingCity? string - Details for the billing address of this account. Maximum size is 40 characters.
- BillingState? string - Details for the billing address of this account. Maximum size is 80 characters.
- BillingPostalCode? string - Details for the billing address of this account. Maximum size is 20 characters.
- BillingCountry? string - Details for the billing address of this account. Maximum size is 80 characters.
- BillingLatitude? decimal - Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields.
- BillingLongitude? decimal - Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields.
- BillingGeocodeAccuracy? string - Accuracy level of the geocode for the billing address. See Compound Field Considerations and Limitations for details on geolocation compound fields.
- BillingAddress? record {} - The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields.
- ShippingStreet? string - The street address of the shipping address for this account. Maximum of 255 characters.
- ShippingCity? string - Details of the shipping address for this account. City maximum size is 40 characters
- ShippingState? string - Details of the shipping address for this account. State maximum size is 80 characters.
- ShippingPostalCode? string - Details of the shipping address for this account. Postal code maximum size is 20 characters.
- ShippingCountry? string - Details of the shipping address for this account. Country maximum size is 80 characters.
- ShippingLatitude? decimal - Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields.
- ShippingLongitude? decimal - Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields.
- ShippingGeocodeAccuracy? string - Accuracy level of the geocode for the shipping address. See Compound Field Considerations and Limitations for details on geolocation compound fields.
- ShippingAddress? record {} - The compound form of the shipping address. Read-only. See Address Compound Fields for details on compound address fields.
- Phone? string - Phone number for this account. Maximum size is 40 characters.
- Fax? string - Fax number for the account.
- AccountNumber? string - Account number assigned to this account (not the unique, system-generated ID assigned during creation). Maximum size is 40 characters.
- Website? string - The website of this account. Maximum of 255 characters.
- PhotoUrl? string - Path to be combined with the URL of a Salesforce instance (for example, https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the account. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the account. Blank if Social Accounts and Contacts isn't enabled for the org or if Social Accounts and Contacts is disabled for the requesting user.
- Sic? string - Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics. Maximum of 20 characters. This field is available on business accounts, not person accounts.
- Industry? string - An industry associated with this account. Maximum size is 40 characters.
- AnnualRevenue? decimal - Estimated annual revenue of the account.
- NumberOfEmployees? int - Label is Employees. Number of employees working at the company represented by this account. Maximum size is eight digits.
- Ownership? string - Ownership type for the account, for example Private, Public, or Subsidiary.
- TickerSymbol? string - The stock market symbol for this account. Maximum of 20 characters. This field is available on business accounts, not person accounts.
- Description? string - Text description of the account. Limited to 32,000 KB.
- Rating? string - The account’s prospect rating, for example Hot, Warm, or Cold.
- Site? string - Name of the account’s location, for example Headquarters or London. Label is Account Site. Maximum of 80 characters.
- OwnerId? string - The ID of the user who currently owns this account. Default value is the user logged in to the API to perform the create. If you have set up account teams in your org, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastActivityDate? string - Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- Jigsaw? string - References the ID of a company in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key. This field is available on business accounts, not person accounts.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field.
- JigsawCompanyId? string - ID of the Data.com company
- CleanStatus? string - Indicates the record’s clean status as compared with Data.com. Values are: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus display with different labels on the account record detail page. Matched displays as In Sync Acknowledged displays as Reviewed Pending displays as Not Compared
- AccountSource? string - The source of the account record. For example, Advertisement, Data.com, or Trade Show. The source is selected from a picklist of available values, which are set by an administrator. Each picklist value can have up to 40 characters.
- DunsNumber? string - The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean.
- Tradestyle? string - A name, different from its legal name, that an org may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum length is 255 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean.
- NaicsCode? string - The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy. Maximum size is 8 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean.
- NaicsDesc? string - A brief description of an org’s line of business, based on its NAICS code. Maximum size is 120 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean.
- YearStarted? string - The date when an org was legally established. Maximum length is 4 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean.
- SicDesc? string - A brief description of an org’s line of business, based on its SIC code. Maximum length is 80 characters. This field is available on business accounts, not person accounts.
- DandbCompanyId? string - ID of the associated dandb company
- OperatingHoursId? string - The operating hours associated with the account. Available only if Field Service is enabled.
- CustomerPriority__c? string - Customer priority c
- SLA__c? string - SLA c
- Active__c? string - Active c
- NumberofLocations__c? decimal - Numberof locations c
- UpsellOpportunity__c? string - Upsell opportunity c
- SLASerialNumber__c? string - SLA serial number c
- SLAExpirationDate__c? string - SLA expiration date c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActionLinkGroupTemplateSObject
Action link templates let you reuse action link definitions and package and distribute action links. An action link is a button on a feed element. Clicking on an action link can take a user to another Web page, initiate a file download, or invoke an API call to an external server or Salesforce. Use action links to integrate Salesforce and third-party services into the feed. Every action link belongs to an action link group and action links within the group are mutually exclusive.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The name of the action link group template to use in code.
- Language? string - The language of the MasterLabel.
- MasterLabel? string - The name of the action link group template.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExecutionsAllowed? string - The number of times an action link can be executed. Values are:Once—An action link can be executed only once across all users. OncePerUser—An action link can be executed only once for each user. Unlimited—An action link can be executed an unlimited number of times by each user. If the action link’s actionType is Api or ApiAsync, you can’t use this value.
- HoursUntilExpiration? int - The number of hours from when the action link group is created until it's removed from associated feed elements and can no longer be executed. The maximum value is 8,760.
- Category? string - The location of the action link group within the feed element. Values are:Primary—The action link group is displayed in the body of the feed element. Overflow—The action link group is displayed in the overflow menu of the feed element.
- IsPublished? boolean - If true, the action link group template is published. Action link group templates shouldn’t be published until at least one is associated with it. Once set to true, this can’t be set back to false.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActionLinkTemplateSObject
Action link templates let you reuse action link definitions and package and distribute action links. An action link is a button on a feed element. Clicking an action link can take a user to another Web page, initiate a file download, or invoke an API call to an external server or Salesforce. Use action links to integrate Salesforce and third-party services into the feed.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ActionLinkGroupTemplateId? string - ID of the with which this action link template is associated.
- LabelKey? string - Key for the set of labels to display for these action link states: new, pending, success, failed. For example, the Approve set contains these labels: Approve, Pending, Approved, Failed. For a complete list of keys and labels, see Action Links Labels in the Connect REST API Developer Guide or the Apex Developer Guide.
- Method? string - HTTP method for the action URL. One of these values:HttpDelete—Returns HTTP 204 on success. Response body or output class is empty. HttpGet—Returns HTTP 200 on success. HttpHead—Returns HTTP 200 on success. Response body or output class is empty. HttpPatch—Returns HTTP 200 on success or HTTP 204 if the response body or output class is empty. HttpPost—Returns HTTP 201 on success or HTTP 204 if the response body or output class is empty. Exceptions are the batch posting resources and methods, which return HTTP 200 on success. HttpPut—Return HTTP 200 on success or HTTP 204 if the response body or output class is empty. Ui and Download action links must use HttpGet.
- LinkType? string - The type of action link. One of these values:Api—The action link calls a synchronous API at the action URL. Salesforce sets the status to SuccessfulStatus or FailedStatus based on the HTTP status code returned by your server. ApiAsync—The action link calls an asynchronous API at the action URL. The action remains in a PendingStatus state until a third party makes a request to /connect/action-links/actionLinkId to set the status to SuccessfulStatus or FailedStatus when the asynchronous operation is complete. Download—The action link downloads a file from the action URL. Ui—The action link takes the user to a web page at the action URL.
- Position? int - An integer specifying the position of the action link template relative to other action links in the group. 0 is the first position.
- IsConfirmationRequired? boolean - If true, a confirmation dialog appears before the action is executed.
- IsGroupDefault? boolean - If true, action links derived from this template are the default or primary action in their action groups. There can be only one default action per action group.
- UserVisibility? string - Who can see the action link. This value is set per action link, not per action link group. One of these values: Creator—Only the creator of the action link can see the action link. Everyone—Everyone can see the action link. EveryoneButCreator—Everyone but the creator of the action link can see the action link. Manager—Only the manager of the creator of the action link can see the action link. CustomUser—Only the custom user can see the action link. CustomExcludedUser—Everyone but the custom user can see the action link.
- UserAlias? string - If you selected CustomUser or CustomExcludedUser for UserVisibility, this field is the alias for the custom user. Use the alias in a template binding to specify the custom user when an action link group is created using the template.
- Label? string - A custom label to display on the action link button. If none of the LabelKey values make sense for an action link, use a custom label. Set the LabelKey field to None and enter a label name in the Label field.
- ActionUrl? string - The action link URL. For example, a Ui action link URL is a Web page. A Download action link URL is a link to the file to download. Ui and Download action link URLs are provided to clients. An Api or ApiAsync action link URL is a REST resource. Api and ApiAsync action link URLs aren’t provided to clients. Links to Salesforce can be relative. All other links must be absolute and start with https://. Links to resources hosted on Salesforce servers can be relative, starting with a /. All other links must be absolute and start with https://. This field can contain context variables and binding variables in the form {!Bindings.key}, for example, https://www.example.com/{!Bindings.itemId}. Set the binding variable’s value when you instantiate the action link group from the template.
- RequestBody? string - Template for the HTTP request body sent when corresponding action links are invoked. This field can be used only for Api and ApiAsync action links. This field can contain context variables and binding variables in the form {!Bindings.key}.
- Headers? string - Template for the HTTP headers sent when corresponding action links are invoked. This field can be used only for Api and ApiAsync action links. This field can contain context variables and binding variables in the form {!Bindings.key}.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActiveFeatureLicenseMetricSObject
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date of the metrics
- FeatureType? string - Type of the feature
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AssignedUserCount? int - Number of assigned user
- ActiveUserCount? int - Number of active user
- TotalLicenseCount? int - Number of total license
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActivePermSetLicenseMetricSObject
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date of the metrics
- PermissionSetLicenseId? string - ID of the associated permission set license
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AssignedUserCount? int - Number of assigned user
- ActiveUserCount? int - Number of active user
- DeveloperName? string - Unique developer name for the record
- MasterLabel? string - Master label for the record
- TotalLicenses? int - Total licenses
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActiveProfileMetricSObject
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date of the metrics
- UserLicenseId? string - ID of the associated user license
- ProfileId? string - ID of the user's profile
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AssignedUserCount? int - Number of assigned user
- ActiveUserCount? int - Number of active user
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActivityFieldHistorySObject
Fields
- Id? string - Unique identifier for the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ActivityId? string - ID of the associated activity
- ChangedDate? string - Date of the changed
- ChangedById? string - ID of the associated changed by
- FieldName? string - Name of the field
- DataType? string - Data type of the field that was changed
- Operation? string - Operation associated with the record
- IsDataAvailable? boolean - Indicates whether the record is data available (true) or not (false)
- OldValueDateTime? string - Date and time of the old value
- NewValueDateTime? string - Date and time of the new value
- OldValueNumber? decimal - Old value number
- NewValueNumber? decimal - New value number
- OldValueText? string - Old value text
- NewValueText? string - New value text
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ActivityHistorySObject
This read-only object is displayed in a related list of closed activities—past events and closed tasks—related to an object. It includes activities for all contacts related to the object. ActivityHistory fields for phone calls are only available if your organization uses Salesforce CRM Call Center.
Fields
- Id? string - Unique identifier for the record
- AccountId? string - Indicates the ID of the related account, which is determined as follows: The account associated with the WhatId, if it exists; or The account associated with the WhoId, if it exists; otherwise null For information on IDs, see ID Field Type.
- WhoId? string - The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID. The label is Name ID. If Shared Activities is enabled, the value of this field is the ID of the related lead or primary contact. If you add, update, or remove the WhoId field, you might encounter problems with triggers, workflows, and data validation rules that are associated with the record. The label is Name ID. If your organization uses Shared Activities, when you query activities in API version 30.0 or later, the returned value of the WhoId field matches the value in the queried object, not necessarily in the activity record itself. If Shared Activities is enabled, the value of this field is not populated and the field PrimaryWhoId should be queried instead.
- WhatId? string - The WhatId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects. WhatIds are polymorphic. Polymorphic means a WhatId is equivalent to the ID of a related object. The label is Related To ID.
- Subject? string - Contains the subject of the task or event.
- IsTask? boolean - If the value of this field is set to true, then the activity is a task. If the value is set to false, then the activity is an event. Label is Task.
- ActivityDate? string - Indicates one of the following: The due date of a task The due date of an event if IsAllDayEvent is set to true
- ActivityDateTime? string - Contains the event’s due date if the IsAllDayEvent flag is set to false. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate. Label is Due Date Time.The value for this field and StartDateTime must match, or one of them must be null.
- OwnerId? string - Indicates the ID of the user or group who owns the activity.
- Status? string - Indicates the current status of a task, such as in progress or complete. Each predefined status field sets a value for IsClosed. To obtain picklist values, query TaskStatus.
- Priority? string - Indicates the priority of a task, such as high, normal, or low.
- IsHighPriority? boolean - Indicates a high-priority task. This field is derived from the Priority field.
- ActivityType? string - Represents one of the following values: Call, Email, Meeting, or Other. Label is Type. These are default values, and can be changed.
- IsClosed? boolean - Indicates whether a task is closed; value is always true. This field is set indirectly by setting the Status field on the task—each picklist value has a corresponding IsClosed value. Label is Closed.
- IsAllDayEvent? boolean - If the value of this field is set to true, then the activity is an event spanning a full day, and the ActivityDate defines the date of the event. If the value of this field is set to false, then the activity may be an event spanning less than a full day, or it may be a task. Label is All-Day Event.
- IsVisibleInSelfService? boolean - If the value of this field is set to true, then the activity can be viewed in the self-service portal. Label is Visible in Self-Service.
- DurationInMinutes? int - Indicates the duration of the event or task.
- Location? string - If the activity is an event, then this field contains the location of the event. If the activity is a task, then the value is null.
- Description? string - Contains a description of the event or task. Limit is 32 KB.
- IsDeleted? boolean - Indicates whether the activity has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CallDurationInSeconds? int - Duration of the call in seconds.
- CallType? string - The type of call being answered: Inbound, Internal, or Outbound.
- CallDisposition? string - Represents the result of a given call, for example, “we'll call back,” or “call unsuccessful.” Limit is 255 characters.
- CallObject? string - Name of a call center. Limit is 255 characters.
- ReminderDateTime? string - Represents the time when the reminder is scheduled to fire, if IsReminderSet is set to true. If IsReminderSet is set to false, then the user may have deselected the reminder checkbox in the Salesforce user interface, or the reminder has already fired at the time indicated by the value.
- IsReminderSet? boolean - Indicates whether a reminder is set for an activity (true) or not (false).
- EndDateTime? string - Indicates the end date and time of the event or task. Available in versions 27.0 and later. This field is optional, depending on the following: If IsAllDayEvent is true, you can supply a value for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time. If both fields are null, the duration defaults to one day. If IsAllDayEvent is false, a value must be supplied for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time.
- StartDateTime? string - Indicates the start date and time of the event. Available in versions 29.0 and later. If the event’s IsAllDayEvent flag is set to true (indicating an all-day event), then the time stamp in StartDateTime is always set to midnight in the Coordinated Universal Time (UTC) time zone. Don’t attempt to alter the time stamp to account for any time zone differences. If the event’s IsAllDayEvent flag is set to false, then you must translate the time portion of the time stamp in StartDateTime to or from a local time zone for the user or the application, as appropriate. The translation must be in the Coordinated Universal Time (UTC) time zone. If this field has a value, then ActivityDate and ActivityDateTime either must be null or must match the value of this field. If the activity is a task, StartDateTime is null
- ActivitySubtype? string - Provides standard subtypes to facilitate creating and searching for specific activity subtypes. This field isn’t updateable. ActivitySubtype values: Task Email Call Event List Email
- AlternateDetailId? string - The ID of a record the activity is related to which contains more details about the activity. For example, an activity can be related to an EmailMessage record.
- CompletedDateTime? string - Date and time when the record was completed
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AdditionalNumberSObject
Represents an optional additional number for a call center. This additional number is visible in the call center's phone directory.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CallCenterId? string - System field that contains the ID of the user who created the call center associated with this additional number. If value is null, this additional number is displayed in every call center's phone directory.
- Name? string - The name of the additional number. Limit: 80 characters.
- Description? string - Description of the additional number, such as Conference Room B. Limit: 255 characters.
- Phone? string - The phone number that corresponds to this additional number.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AddressSObject
Represents a mailing, billing, or home address.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - An auto-generated number identifying the address.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentId? string - A lookup field to the parent location.
- LocationType? string - Picklist of location types. The available values are: Warehouse (default) Site Van Plant
- AddressType? string - Picklist of address types. The values are: Mailing Shipping Billing Home
- Street? string - The address street.
- City? string - The address city.
- State? string - The address state.
- PostalCode? string - The address postal code.
- Country? string - The address country.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of the address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- Longitude? decimal - Used with Latitude to specify the precise geolocation of the address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places.
- GeocodeAccuracy? string - The level of accuracy of a location’s geographical coordinates compared with its physical address. A geocoding service typically provides this value based on the address’s latitude and longitude coordinates.
- Address? record {} - The full address.
- Description? string - A brief description of the address.
- DrivingDirections? string - Directions to the address.
- TimeZone? string - Picklist of available time zones.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AggregateResultSObject
Fields
- Id? string - Unique identifier for the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIApplicationConfigSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIApplicationSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Status? string - Current status of the record
- Type? string - Type or category of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIInsightActionSObject
Represents an Einstein prediction insight action.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the AIInsightAction.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AiRecordInsightId? string - The unique ID of the associated AIRecordInsight.
- Type? string - The type of action. Possible values are: InvocableAction—Invocable Action Macro—Macro QuickAction—Quick action. StandardAction—Standard Action. An example standard action would be to update a record.
- Confidence? decimal - Relative confidence strength of the generated prediction insight. Higher values (near 1.0) indicate stronger confidence.
- ActionName? string - The ID of the action. For example, a value of “Case.SendEmail” indicates a send email quick action on Case.
- ActionId? string - The unique ID of the associated action, such as the ID of a Macro.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIInsightFeedbackSObject
Represents an Einstein prediction insight feedback.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the AIInsightFeedback.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AiRecordInsightId? string - The unique ID of the associated AIRecordInsight.
- AiInsightFeedbackType? string - The nature of the feedback. Possible values are: Explicit—Explicit feedback. For example, a user applies and saves an Einstein recommendation on a case. Implicit—Implicit feedback. For example, a user edits or updates a case field without viewing or applying field recommendations from Einstein.
- AiFeedback? string - The feedback user sentiment. Possible values are: Negative—Negative feedback Neutral—Neutral feedback Positive—Positive feedback
- Rank? int - The feedback score.
- ValueId? string - The unique ID of the associated AIInsightValue.
- ActualValue? string - The raw feedback value. This field is null when no recommendation is selected.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIInsightReasonSObject
Represents an Einstein prediction insight reason.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the AIInsightReason.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AiInsightValueId? string - The unique ID of the associated AIInsightValue.
- Intensity? decimal - The intensity weight for this insight reason.
- Contribution? decimal - The contribution weight for this insight reason.
- Variance? decimal - The variance weight for this insight reason.
- AiModelFactorId? string - ID of the associated AI model factor
- FieldName? string - The name of the field the insight uses for its evaluation.
- Operator? string - The logical operator the insight uses to compare the field value with the expression value. For example, if the prediction evaluates whether the fieldValue for the field bonus__c is greater than $5,000, the logical operator is greater than.
- FieldValue? string - The value for the field the insight uses for its evaluation.
- FeatureValue? string - The value of the feature, such as TRUE or FALSE.
- FeatureType? string - The type of the feature, such as BOOL.
- RelatedInsightReasonId? string - ID of the associated related insight reason
- SortOrder? int - Sort order for the record
- ReasonLabelKey? string - Reason label key
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIInsightValueSObject
Represents an Einstein prediction insight value.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the AIInsightValue.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AiRecordInsightId? string - The unique ID of the associated AIRecordInsight.
- AiInsightActionId? string - The unique ID of the associated AIInsightAction.
- ValueType? string - The data type of the prediction result insight value. Possible values are: Boolean—Boolean Currency—Currency DateTime—DateTime Enum—Enum Lookup—Lookup Number—Number String—String
- SobjectType? string - The type of the value object, such as Account or Case, if this insight value references an object.
- Field? string - The name of the target field Einstein is making predictions for, such as “AnnualRevenue”.
- Value? string - The prediction result insight value.
- FieldValueLowerBound? string - The lower bound value.
- FieldValueUpperBound? string - The upper bound value.
- Confidence? decimal - Relative confidence strength of the generated prediction insight. Higher values (near 1.0) indicate stronger confidence.
- SobjectLookupValueId? string - The unique ID of the value object, if this insight value references an object.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIPredictionEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- PredictionEntityId? string - ID of the associated prediction entity
- InsightId? string - ID of the associated insight
- TargetId? string - ID of the associated target
- Confidence? decimal - Confidence
- FieldName? string - Name of the field
- HasError? boolean - Indicates whether the record has error (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AIRecordInsightSObject
Represents an Einstein prediction insight.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the AIRecordInsight.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PredictionDefinitionId? string - ID of the associated prediction definition
- AiApplicationId? string - The unique ID of the AiApplication that generated this prediction.
- TargetId? string - The unique ID of the record Einstein is making predictions for.
- TargetSobjectType? string - The type of the target object, such as Account or Case.
- Type? string - The type of insight. Possible values are: Action—An insight that indicates a suggested action, such as sending an email. Lookup—An insight that indicates a related value not directly related to the target object and field. MultiValue—An insight with multiple values, such as a multi-class classification. SimilarRecord—An insight that indicates similar or duplicate records. SingleValue—A single value insight, such as a regression number or a score.
- RunGuid? string - A unique identifier for the Einstein process that made the prediction.
- RunStartTime? string - The date and time the Einstein prediction process was started.
- ValidUntil? string - The day and time this insight is valid until. After this day and time, the insight might no longer be valid due to new prediction results from new or changed data. If this field is null, this insight never expires.
- Confidence? decimal - Relative confidence strength of the generated prediction insight, from 0.0 to 1.0. Higher values (near 1.0) indicate stronger confidence.
- TargetField? string - The field to which prediction results are written. Case Classification doesn’t use this field.
- Status? string - The status of this insight. Possible values are: Defunct—The insight has been consumed by the Einstein feature that owns the prediction. For example, Case Classification marks an insight as defunct if a predicted recommendation was presented to a user and the user either accepted or ignored the recommendation. This behavior ensures that the same recommendation isn’t presented multiple times to the user. New—The insight hasn’t been consumed by the Einstein feature.
- ModelId? string - ID of the associated model
- MlPredictionDefinitionId? string - ID of the associated ML prediction definition
- PredictionField? string - The label of the field that Einstein is making predictions for, such as “Case.IsEscalated”.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AlternativePaymentMethodShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AlternativePaymentMethodSObject
Represents a payment method that doesn't have a defined Commerce Orders entity such as CardPaymentMethod or DigitalWallet. Common examples of alternative payment methods for Commerce Orders include CashOnDeliver, Klarna, and Direct Debit. AlternativePaymentMethod functions the same as any other type of payment method for processing transactions in the payment gateway.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The user who owns the alternative payment method.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AlternativePaymentMethodNumber? string - Salesforce ID number for the alternative payment method.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- PaymentGatewayId? string - ID of the payment gateway entity used to handle transactions from this payment method.
- NickName? string - User-defined nickname for this pamyent method.
- GatewayToken? string - Tokenized form of the alternative payment method, returned by the gateway. Stored as encrypted text.
- GatewayTokenDetails? string - Unique tokenized ID generated by the payment gateway when this payment method first interacts with the gateway. Used to identify the payment method during future transactions.
- Email? string - Email address of the payment method holder.
- AccountId? string - The account for the alternative payment method.
- Status? string - The state of the payment method. Required.
- CompanyName? string - Company name for this payment method. Part of the payment method’s address.
- PaymentMethodStreet? string - Part of the address for this payment method.
- PaymentMethodCity? string - Part of the address for this payment method.
- PaymentMethodState? string - Part of the address for this payment method.
- PaymentMethodPostalCode? string - Part of the address for this payment method.
- PaymentMethodCountry? string - Part of the address for this payment method.
- PaymentMethodLatitude? decimal - Part of the address for this payment method.
- PaymentMethodLongitude? decimal - Part of the address for this payment method.
- PaymentMethodGeocodeAccuracy? string - Part of the address for this payment method.
- PaymentMethodAddress? record {} - User address column type. First name and last name are listed as separate fields.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- ProcessingMode? string - Shows whether the payment method was created in Salesforce or externally. Required.
- MacAddress? string - Mac Address of the payment method holder.
- Phone? string - Phone number of the payment method's owner.
- IpAddress? string - IP address for the payment method owner.
- AuditEmail? string - Audit email
- IsAutoPayEnabled? boolean - Indicates whether the record is auto pay enabled (true) or not (false)
- PaymentMethodType? string - Type of the payment method
- PaymentMethodSubType? string - Type of the payment method sub
- PaymentMethodDetails? string - Payment method details
- BillingFirstName? string - Name of the billing first
- BillingLastName? string - Name of the billing last
- BillingName? string - Name of the billing
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AnnouncementSObject
Represents a Chatter group announcement.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FeedItemId? string - Required. The ID of the FeedItem that contains the content of the announcement. Announcements are stored as text posts.
- ExpirationDate? string - Required. The date on which the announcement expires. Announcements display on the group UI until 11:59 p.m. local time on the selected date.
- SendEmails? boolean - Set to true to email all group members when an announcement is posted to the group. The default is false. This requires the user to have the “Send announcement on email” permission. This field is available in API version 36.0 and later. This field is currently available to select customers through a pilot program. To be nominated to join this pilot program, contact Salesforce. Additional terms and conditions may apply to participate in the pilot program. Please note that pilot programs are subject to change, and as such, we cannot guarantee acceptance into this pilot program or a particular time frame in which this feature can be enabled. Any unreleased services or features referenced in this document, press releases, or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make their purchase decisions based upon features that are currently available.
- IsArchived? boolean - When true, the announcement has been dismissed by the user on the user profile.’ This field is available in API version 36.0 and later.
- ParentId? string - The ID of the parent CollaborationGroup that the announcement belongs to. An announcement can belong only to a single Chatter group.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexClassSObject
Represents an Apex class.
Fields
- Id? string - Unique identifier for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- Name? string - Name of the class. Limit: 255 characters
- ApiVersion? decimal - The API version for this class. Every class has an API version specified at creation.
- Status? string - The current status of the Apex class. The following string values are valid: Active—The class is active. Deleted—The class is marked for deletion. This is useful for managed packages, because it allows a class to be deleted when a managed package is updated. Inactive—This option is unused and is only supported for ApexTrigger. For more information, see the Metadata API Developer Guide.
- IsValid? boolean - Indicates whether any dependent metadata has changed since the class was last compiled (true) or not (false). The default value is false.
- BodyCrc? decimal - The CRC (cyclic redundancy check) of the class or trigger file.
- Body? string - The Apex class definition. Limit: 1 million characters.
- LengthWithoutComments? int - Length of the class without comments.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexComponentSObject
Represents a definition for a custom component that can be used in a Visualforce page alongside standard components such as apex:relatedList and apex:dataTable.
Fields
- Id? string - Unique identifier for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- Name? string - Required. Name of this Visualforce custom component.
- ApiVersion? decimal - The API version for this custom component. Every custom component has an API version specified at creation. If the API version is less than 15.0 and ApiVersion is not specified, ApiVersion defaults to 15.0.
- MasterLabel? string - The text used to identify the Visualforce custom component in the Setup area of Salesforce. The Label for this field is Label.
- Description? string - Description of the Visualforce custom component.
- ControllerType? string - The type of controller associated with this Visualforce custom component. Possible values include: Not Specified, for custom components defined without a value for the controller attribute on the apex:component tag Standard, a value that can't be used with custom components or errors may occur StandardSet, a value that can't be used with custom components or errors may occur Custom, for components that have a value for the controller attribute on the apex:component tag
- ControllerKey? string - The identifier for the controller associated with this custom component: If the ControllerType parameter is set to Standard or StandardSet, this value is the name of the sObject that defines the controller. If the ControllerType parameter is set to Custom, this value is the name of the Apex class that defines the controller.
- Markup? string - The Visualforce markup, HTML, Javascript, and any other Web-enabled code that defines the content of the custom component.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexEmailNotificationSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- UserId? string - ID of the user associated with the record
- Email? string - Email address
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexLogSObject
Represents a debug log containing information about a transaction, including information about Apex, Visualforce, and workflow and validation rules.
Fields
- Id? string - Unique identifier for the record
- LogUserId? string - ID of the user whose actions triggered the debug log.
- LogLength? int - Length of the log in bytes.
- LastModifiedDate? string - Date and time when the record was last modified
- Request? string - Request type. Values are: API—Request came from the API Application—Request came from the Salesforce user interface
- Operation? string - Name of the operation that triggered the debug log, such as APEXSOAP, Apex Sharing Recalculation, and so on.
- Application? string - This value depends on the client type that triggered the log. For API clients, this value is the client ID. For browser clients, this value is Browser.
- Status? string - Status of the transaction. This value is either Success, or the text of an unhandled Apex exception.
- DurationMilliseconds? int - Duration of the transaction in milliseconds.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- StartTime? string - Start time of the transaction.
- Location? string - Specifies the location of the origin of the log. Values are: Monitoring—Log is generated as part of debug log monitoring. These types of logs are maintained for seven days or until a user deletes them. SystemLog—Log is generated from the Developer Console. These types of logs are maintained for 24 hours or until the user clears them.
- RequestIdentifier? string - The unique identifier of the request that triggered the debug log. Use this request identifier to correlate multiple debug logs triggered by the same request.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexPageInfoSObject
Represents metadata about a single Visualforce page.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - For internal use only.
- ApexPageId? string - ID for the Visualforce page.
- Name? string - Developer name of the Visualforce page.
- NameSpacePrefix? string - The namespace prefix associated with this object. Each Developer Edition org that creates a managed package has a unique namespace prefix. Limit: 15 characters. You can refer to a component in a managed package by using the namespacePrefix__componentName notation.
- ApiVersion? decimal - The API version for the page. Every page has an API version specified at creation. If the API version is less than 15.0 and ApiVersion is not specified, ApiVersion defaults to 15.0.
- Description? string - Description of the Visualforce page.
- IsAvailableInTouch? boolean - Indicates if Visualforce tabs associated with the Visualforce page can be used in the Salesforce app (true) or not (false). The default value is false.
- MasterLabel? string - The text used to identify the Visualforce page in the Setup area of Salesforce.
- IsShowHeader? string - The showHeader value for the Visualforce page. This will be “unknown” if the Visualforce page uses an expression to compute showHeader. The default value is true.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexPageSObject
Represents a single Visualforce page.
Fields
- Id? string - Unique identifier for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- Name? string - Required. Name of this Visualforce page.
- ApiVersion? decimal - The API version for this page. Every page has an API version specified at creation. If the API version is less than 15.0 and ApiVersion is not specified, ApiVersion defaults to 15.0.
- MasterLabel? string - The text used to identify the Visualforce page in the Setup area of Salesforce. The Label is Label.
- Description? string - Description of the Visualforce page.
- ControllerType? string - The type of controller associated with this Visualforce page. Possible values include: Not Specified, for pages defined with neither a standardController nor a controller attribute on the apex:page tag Standard, for pages defined with the standardController attribute on the apex:page tag StandardSet, for pages defined using the standardController and recordSetVar attribute on the apex:page tag Custom, for pages defined with the controller attribute on the apex:page tag
- ControllerKey? string - The identifier for the controller associated with this page: If the ControllerType parameter is set to Standard or StandardSet, this value is the name of the sObject that defines the controller. If the ControllerType parameter is set to Custom, this value is the name of the Apex class that defines the controller.
- IsAvailableInTouch? boolean - Indicates if Visualforce tabs associated with the Visualforce page can be used in the Salesforce mobile app (true) or not (false). (Use of this field for Salesforce Touch is deprecated.) This field is available in API version 27.0 and later. Standard object tabs that are overridden with a Visualforce page aren’t supported in the Salesforce mobile app, even if you set this field for the page. The default Salesforce app page for the object is displayed instead of the Visualforce page.
- IsConfirmationTokenRequired? boolean - Indicates whether GET requests for the page require a CSRF confirmation token (true) or not (false). This field is available in API version 28.0 and later. If you change this field’s value from false to true, links to the page require a CSRF token to be added to them, or the page will be inaccessible.
- Markup? string - The Visualforce markup, HTML, Javascript, and any other Web-enabled code that defines the content of the page.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTestQueueItemSObject
Represents a single Apex class in the Apex job queue.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApexClassId? string - The Apex class whose tests are to be executed.
- Status? string - Current status of the record
- ExtendedStatus? string - The pass rate of the test run. For example: “(4/6)”. This means that four out of a total of six tests passed. If the class fails to execute, this field contains the cause of the failure.
- ParentJobId? string - Points to the AsyncApexJob that represents the entire test run. If you insert multiple Apex test queue items in a single bulk operation, the queue items share the same parent job. This means that a test run can consist of the execution of the tests of several classes if all the test queue items are inserted in the same bulk operation.
- TestRunResultId? string - The ID of the associated ApexTestRunResult object.
- ShouldSkipCodeCoverage? boolean - Indicates whether to opt out of collecting code coverage information during Apex test runs. Available in API version 43.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTestResultLimitsSObject
Captures the Apex test limits used for a particular test method execution. An instance of this object is associated with each ApexTestResult record.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApexTestResultId? string - The ID of the associated ApexTestResult object.
- Soql? int - The number of SOQL queries made during the test run.
- QueryRows? int - The number of rows queried during the test run.
- Sosl? int - The number of SOSL queries made during the test run.
- Dml? int - The number of DML statements made during the test run.
- DmlRows? int - The number of rows accessed by DML statements during the test run.
- Cpu? int - The amount of CPU used during the test run, in milliseconds.
- Callouts? int - The number of callouts made during the test run.
- Email? int - The number of email invocations made during the test run.
- AsyncCalls? int - The number of asynchronous calls made during the test run.
- MobilePush? int - The number of mobile push calls made during the test run.
- LimitContext? string - Indicates whether the test run was synchronous or asynchronous.
- LimitExceptions? string - Indicates whether your org has any limits that differ from the default limits.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTestResultSObject
Represents the result of an Apex test method execution.
Fields
- Id? string - Unique identifier for the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- TestTimestamp? string - The start time of the test method.
- Outcome? string - The result of the test method execution. Can be one of these values: Pass Fail CompileFail Skip
- ApexClassId? string - The Apex class whose test methods were executed.
- MethodName? string - The test method name.
- Message? string - The exception error message if a test failure occurs; otherwise, null.
- StackTrace? string - The Apex stack trace if the test failed; otherwise, null.
- AsyncApexJobId? string - Points to the AsyncApexJob that represents the entire test run. This field points to the same object as ApexTestQueueItem.ParentJobId.
- QueueItemId? string - Points to the ApexTestQueueItem which is the class that this test method is part of.
- ApexLogId? string - Points to the ApexLog for this test method execution if debug logging is enabled; otherwise, null.
- ApexTestRunResultId? string - The ID of the ApexTestRunResult that represents the entire test run.
- RunTime? int - The time it took the test method to run, in milliseconds.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTestRunResultSObject
Contains summary information about all the test methods that were run in a particular Apex job.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AsyncApexJobId? string - The parent Apex job ID for the result.
- UserId? string - The user who ran the test run.
- JobName? string - Reserved for future use.
- IsAllTests? boolean - Indicates whether all Apex test classes were run.
- Source? string - The source of the test run, such as the Developer Console.
- StartTime? string - The time at which the test run started.
- EndTime? string - The time at which the test run ended.
- TestTime? int - The time it took the test to run, in seconds.
- Status? string - The status of the test run. Values include: Queued Processing Aborted Completed Failed
- ClassesEnqueued? int - The total number of classes enqueued during the test run.
- ClassesCompleted? int - The total number of classes executed during the test run.
- MethodsEnqueued? int - The total number of methods enqueued for the test run. This value is initialized before the test runs.
- MethodsCompleted? int - The total number of methods completed during the test run. This value is updated after each class is run.
- MethodsFailed? int - The total number of methods that failed during this test run. This value is updated after each class is run.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTestSuiteSObject
Represents a suite of Apex classes to include in a test run. A TestSuiteMembership object associates each class with the suite.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- TestSuiteName? string - The name of the Apex test suite. This label appears in the user interface. This value is case-sensitive and must be unique.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTriggerSObject
Represents an Apex trigger.
Fields
- Id? string - Unique identifier for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- Name? string - Name of the trigger. Limit: 255 characters
- TableEnumOrId? string - Specifies the object associated with the trigger, such as Account or Contact.
- UsageBeforeInsert? boolean - Specifies whether the trigger is a before insert trigger (true) or not (false).
- UsageAfterInsert? boolean - Specifies whether the trigger is an after insert trigger (true) or not (false).
- UsageBeforeUpdate? boolean - Specifies whether the trigger is a before update trigger (true) or not (false).
- UsageAfterUpdate? boolean - Specifies whether the trigger is an after update trigger (true) or not (false).
- UsageBeforeDelete? boolean - Specifies whether the trigger is a before delete trigger (true) or not (false).
- UsageAfterDelete? boolean - Specifies whether the trigger is an after delete trigger (true) or not (false).
- UsageIsBulk? boolean - Specifies whether the trigger is defined as a bulk trigger (true) or not (false). This field is not used for Apex triggers saved using Salesforce API version 10.0 or higher: all triggers starting with that version are automatically considered bulk, and this field will always return true.
- UsageAfterUndelete? boolean - Specifies whether the trigger is an after undelete trigger (true) or not (false).
- ApiVersion? decimal - The API version for this trigger. Every trigger has an API version specified at creation.
- Status? string - The current status of the Apex trigger. The following string values are valid: Active—The trigger is active. Inactive—The trigger is inactive, but not deleted. Deleted—The trigger is marked for deletion. This is useful for managed packages, because it allows a class to be deleted when a managed package is updated. Inactive is not valid for ApexClass. For more information, see the Metadata API Developer Guide.
- IsValid? boolean - Indicates whether any dependent metadata has changed since the trigger was last compiled (true) or not (false).
- BodyCrc? decimal - The CRC (cyclic redundancy check) of the class or trigger file.
- Body? string - The Apex trigger definition. Limit: 1 million characters.
- LengthWithoutComments? int - Length of the trigger without comments
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApexTypeImplementorSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- ApexClassId? string - ID of the associated apex class
- ClassName? string - Name of the class
- ClassNamespacePrefix? string - Class namespace prefix
- IsConcrete? boolean - Indicates whether the record is concrete (true) or not (false)
- InterfaceApexClassId? string - ID of the associated interface apex class
- InterfaceName? string - Name of the interface
- InterfaceNamespacePrefix? string - Interface namespace prefix
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApiAnomalyEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SourceIp? string - IP address of the source that triggered the event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- Operation? string - Operation associated with the record
- QueriedEntities? string - Entities that were queried
- RequestIdentifier? string - Request identifier
- RowsProcessed? decimal - Number of rows processed
- Score? decimal - Score associated with the event
- SecurityEventData? string - Additional security data associated with the event
- Summary? string - Summary description of the event
- Uri? string - Uri
- UserAgent? string - User agent string of the client application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApiAnomalyEventStoreFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApiAnomalyEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- ApiAnomalyEventNumber? string - API anomaly event number
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SourceIp? string - IP address of the source that triggered the event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- Operation? string - Operation associated with the record
- QueriedEntities? string - Entities that were queried
- RequestIdentifier? string - Request identifier
- RowsProcessed? decimal - Number of rows processed
- Score? decimal - Score associated with the event
- SecurityEventData? string - Additional security data associated with the event
- Summary? string - Summary description of the event
- Uri? string - Uri
- UserAgent? string - User agent string of the client application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApiEventSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- LoginHistoryId? string - ID of the login history record associated with the event
- RowsProcessed? decimal - Number of rows processed
- RowsReturned? decimal - Rows returned
- Operation? string - Operation associated with the record
- QueriedEntities? string - Entities that were queried
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- AdditionalInfo? string - Additional info
- ApiType? string - Type of the API
- ApiVersion? decimal - API version of the record
- Application? string - Application associated with the record
- Client? string - Client
- ConnectedAppId? string - ID of the associated connected app
- ElapsedTime? int - Elapsed time
- Platform? string - Platform associated with the record
- Query? string - Query string associated with the record
- Records? string - Records associated with the result
- UserAgent? string - User agent string of the client application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ApiEventStreamSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- LoginHistoryId? string - ID of the login history record associated with the event
- RowsProcessed? decimal - Number of rows processed
- RowsReturned? decimal - Rows returned
- Operation? string - Operation associated with the record
- QueriedEntities? string - Entities that were queried
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- AdditionalInfo? string - Additional info
- ApiType? string - Type of the API
- ApiVersion? decimal - API version of the record
- Application? string - Application associated with the record
- Client? string - Client
- ConnectedAppId? string - ID of the associated connected app
- ElapsedTime? int - Elapsed time
- Platform? string - Platform associated with the record
- Query? string - Query string associated with the record
- Records? string - Records associated with the result
- UserAgent? string - User agent string of the client application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppAnalyticsQueryRequestSObject
Represents a request for AppExchange App Analytics data.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The auto-generated name of the App Analytics query request.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- DataType? string - The type of usage data being requested. Valid values include: PackageUsageLog PackageUsageSummary SubscriberSnapshot In Summer ’20, we changed the enum names from CustomObjectUsageSummary and CustomObjectUsageLog to PackageUsageSummary and PackageUsageLog. If you wrote integrations using CustomObjectUsageSummary or CustomObjectUsageLog, they continue to work only with v47 and earlier. After you upgrade to v48, you must update the DataType to PackageUsageSummary and PackageUsageLog.
- StartTime? string - Required. Enter start time in format yyyy-MM-ddTHH:mm:ss. Example 2019-04-14T12:00:00
- EndTime? string - Enter end time in format yyyy-MM-ddTHH:mm:ss. Example 2019-04-15T12:00:00
- RequestState? string - Status of the query request. Valid values are: New Pending Complete Expired Failed NoData
- DownloadUrl? string - URL that the user can download data from. Populated after the request is completed.
- DownloadExpirationTime? string - The time when the download URL is no longer valid.
- ErrorMessage? string - Stores error message text that results from this query.
- QuerySubmittedTime? string - Query submitted time
- PackageIds? string - Optional. Enter up to 16 comma-separated package IDs without spaces between IDs. Or enter up to 15 comma-separated package IDs with spaces between the IDs. Use the subscriber package ID that begins with 033. To retrieve a list of your second-generation managed package IDs, run sfdx force:package:list --verbose in Salesforce CLI. To request data on all packages registered to this License Management App, leave the field blank.
- OrganizationIds? string - Optional. Enter up to 16 comma-separated org IDs without spaces between IDs. Or enter up to 15 comma-separated org IDs with spaces between the IDs. To request data for all the orgs the package is installed in, leave the field blank.
- DownloadSize? decimal - The size of the AppExchange App Analytics results file available for download, in bytes.
- FileCompression? string - File compression
- AvailableSince? string - Available since
- FileType? string - Type of the file
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppDefinitionSObject
Represents the metadata of an app and its navigation items. Metadata is returned only for apps that the current user can access.
Fields
- Id? string - A default Salesforce ID.
- DurableId? string - A unique virtual Salesforce ID for the application.
- Label? string - The localized label value corresponding to the MasterLabel field.
- MasterLabel? string - The non-translated label entered when the application was created.
- NamespacePrefix? string - The namespace of the application.
- DeveloperName? string - The developer name of the application.
- LogoUrl? string - The logo URL of the application as selected by the admin.
- Description? string - The optional description of the application.
- UiType? string - Indicates the type of custom application. The value Aloha is for Salesforce Classic, and Lightning is for Lightning Experience.
- NavType? string - The type of navigation for the application. The value Standard is for Lightning Experience. The value Console is for Salesforce console. A null value is for Salesforce Classic.
- UtilityBar? string - The ID of the utility bar associated with this application.
- HeaderColor? string - The header color in the application. Specify the color with a hexadecimal code, such as #0000FF for blue.
- IsOverrideOrgTheme? boolean - Indicates whether to override the global theme for the org. When true, the color scheme and logo that the user has set are used. When false, the global theme for the org is used, even if the user has set a color scheme and logo.
- IsSmallFormFactorSupported? boolean - Indicates whether the Small form factor is set in the CustomApplication metadata.
- IsMediumFormFactorSupported? boolean - Indicates whether the Medium form factor is set in the CustomApplication metadata.
- IsLargeFormFactorSupported? boolean - Indicates whether the Large form factor is set in the CustomApplication metadata.
- IsNavPersonalizationDisabled? boolean - Indicates whether navigation personalization is disabled.
- IsNavAutoTempTabsDisabled? boolean - Indicates whether the navigation automatically creates temporary tabs settings.
- IsNavTabPersistenceDisabled? boolean - Indicates whether the record is nav tab persistence disabled (true) or not (false)
- IsOmniPinnedViewEnabled? boolean - Indicates whether the record is omni pinned view enabled (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppMenuItemSObject
Represents the organization’s default settings for items in the app menu or App Launcher.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- SortOrder? int - The index value that controls where this item appears in the menu. For example, a menu item with a sort order of 5 appears between items with sort order values of 3 and 9.
- Name? string - The API name of the item.
- NamespacePrefix? string - The namespace prefix that is associated with this object. Each Developer Edition org that creates a managed package has a unique namespace prefix. Limit: 15 characters. You can refer to a component in a managed package by using the namespacePrefix__componentName notation. The namespace prefix can have one of the following values:In Developer Edition orgs, NamespacePrefix is set to the namespace prefix of the org for all objects that support it, unless an object is in an installed managed package. In that case, the object has the namespace prefix of the installed managed package. This field’s value is the namespace prefix of the Developer Edition org of the package developer. In orgs that are not Developer Edition orgs, NamespacePrefix is set only for objects that are part of an installed managed package. All other objects have no namespace prefix.
- Label? string - The app’s name.
- Description? string - A description of this menu item.
- StartUrl? string - For a connected app, the location users are directed to after they’ve authenticated. Otherwise, the application’s default start page.
- MobileStartUrl? string - The location mobile users are directed to after they’ve authenticated. This field is used with connected apps and Experience Builder sites. For sites only, this location is a fully qualified domain name. For other apps, it’s a relative URL.
- LogoUrl? string - The logo for the menu item’s application. The default is the initials of the Label value.
- IconUrl? string - The icon for the menu item’s application.
- InfoUrl? string - The URL for more information about the application.
- IsUsingAdminAuthorization? boolean - If true, the app is pre-authorized for certain users by the administrator. The default setting is false.
- MobilePlatform? string - The mobile platform for the app. Possible values include: android – Android ios – iOS Available in API version 49.0 and later.
- MobileMinOsVer? string - The minimum version required for the app. Available in API version 49.0 and later.
- MobileDeviceType? string - The supported device form factors for the mobile app. Available in API version 49.0 and later.
- IsRegisteredDeviceOnly? boolean - If true, indicates that the app is available to registered devices only. The default setting is false. Available in API version 49.0 and later.
- MobileAppVer? string - The version number of the mobile app. Available in API version 49.0 and later.
- MobileAppInstalledDate? string - The date and time that a user installed a mobile app. Available in API version 49.0 and later.
- MobileAppInstalledVersion? string - The version of the user’s installed mobile app. Available in API version 49.0 and later.
- MobileAppBinaryId? string - The URL for the Mobile App Binary file.
- MobileAppInstallUrl? string - The location mobile users are directed to install the app. Available in API version 49.0 and later.
- CanvasEnabled? boolean - Indicates if the app menu item is a canvas app (true) or not (false). The default setting is false.
- CanvasReferenceId? string - The canvas app unique identifier.
- CanvasUrl? string - The URL of the canvas app.
- CanvasAccessMethod? string - The access method for the canvas app. Values can be: Get—OAuth Webflow Post—Signed Request
- CanvasSelectedLocations? string - The selected locations for the canvas app which define where the canvas app can appear in the user interface. For example:Chatter,ChatterFeed,Publisher,ServiceDesk
- CanvasOptions? string - Represents the options enabled for a canvas connected app. The options are: PersonalEnabled—The app is enabled as a canvas personal app. HideHeader—The publisher header, which contains the “What are you working on?” text, is hidden. HideShare—The publisher Share button is hidden. This field is available in API version 34.0 and later.
- Type? string - The type of application represented by this item. The types are: ConnectedApplication Network ServiceProvider TabSet
- ApplicationId? string - The 15-character ID for the menu item.
- UserSortOrder? int - The index value that represents where the user set this item in the menu (or App Launcher). For example, an item with a sort order value of 5 appears between items with sort order values of 3 and 9. This value is separate from SortOrder so you can create logic incorporating both values. For example, if you want the user-sorted items to appear first, followed by the organization order for the rest, use: SELECT ApplicationId,SortOrder,UserSortOrder FROM AppMenuItem order by userSortOrder NULLS LAST, sortOrder NULLS LAST
- IsVisible? boolean - If true, the app is visible to users of the organization. The default setting is false.
- IsAccessible? boolean - If true, the current user is authorized to use the app. The default setting is false.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentAssignmentPolicySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PolicyType? string - Type of the policy
- PolicyApplicableDuration? string - Policy applicable duration
- UtilizationFactor? string - Utilization factor
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentCategoryFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentCategoryHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AppointmentCategoryId? string - ID of the associated appointment category
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentCategorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- IsScheduled? boolean - Indicates whether the record is scheduled (true) or not (false)
- IsDropIn? boolean - Indicates whether the record is drop in (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentInvitationFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentInvitationHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AppointmentInvitationId? string - ID of the associated appointment invitation
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentInvitationShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentInvitationSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InvitationNumber? string - Invitation number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- InvitationIdentifier? string - Invitation identifier
- ServiceTerritoryId? string - ID of the associated service territory
- BookingStartDate? string - Date of the booking start
- BookingEndDate? string - Date of the booking end
- UrlExpiryDate? string - Date of the URL expiry
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- InvitationUrl? string - Invitation URL
- AppointmentTopicId? string - ID of the associated appointment topic
- AppointmentTopicType? string - Type of the appointment topic
- AppointmentType? string - Type of the appointment
- EngagementChannelTypeId? string - ID of the associated engagement channel type
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentInviteeSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- AppointmentInvitationId? string - ID of the associated appointment invitation
- ParticipantServiceResourceId? string - ID of the associated participant service resource
- IsRequiredResource? boolean - Indicates whether the record is required resource (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentScheduleAggrSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ServiceResourceId? string - ID of the associated service resource
- AppointmentDate? string - Date of the appointment
- TotalResourceUtilization? decimal - Total resource utilization
- UsageType? string - Type of usage
- ResourceUtilizationCount? int - Number of resource utilization
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentScheduleLogSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AppointmentScheduleAggrId? string - ID of the associated appointment schedule aggr
- ServiceResourceId? string - ID of the associated service resource
- AppointmentDate? string - Date of the appointment
- RelatedRecordId? string - ID of the related record
- ResourceUtilization? decimal - Resource utilization
- IsUsedForResourceUtilization? boolean - Indicates whether the record is used for resource utilization (true) or not (false)
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentSchedulingPolicySObject
Represents a set of rules for scheduling appointments using Lightning Scheduler.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The API name of the AppointmentSchedulingPolicy object.
- Language? string - The language of the appointment scheduling policy.
- MasterLabel? string - The label for the appointment scheduling policy.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsOrgDefault? boolean - Indicates whether this scheduling policy is the default appointment scheduling policy for Lightning Scheduler appointments in this org.
- ShouldEnforceExcludedResource? boolean - Indicates whether this appointment scheduling policy prevents excluded service resources from being assigned to appointments.
- ShouldEnforceRequiredResource? boolean - Indicates whether this appointment scheduling policy allows only required service resources to be assigned to appointments.
- ShouldUsePrimaryMembers? boolean - Indicates whether this appointment scheduling policy allows only service resources who are primary members of a service territory to be assigned to appointments.
- ShouldUseSecondaryMembers? boolean - Indicates whether this appointment scheduling policy allows service resources who are secondary members of a service territory to be assigned to appointments.
- ShouldMatchSkill? boolean - Indicates whether this appointment scheduling policy allows only required service resources who have certain skills to be assigned to appointments.
- ShouldMatchSkillLevel? boolean - Indicates whether this appointment scheduling policy allows only required service resources who have certain skills and skill levels to be assigned to appointments.
- ShouldRespectVisitingHours? boolean - Indicates whether this appointment scheduling policy prevents users from scheduling appointments outside of an account’s visiting hours.
- AppointmentStartTimeInterval? string - The proposed time interval in minutes between appointment start times. For example, set the interval to 15. Appointments can then begin at the top of the hour and at 15-minute intervals thereafter (10:00 AM, 10:15 AM, 10:30 AM, and so on). Possible values are: 5 10 15 20 30 45 60 90 120 150 180 240 300 360 420 480
- ShouldConsiderCalendarEvents? boolean - Should consider calendar events
- ExtCalEventHandlerId? string - The API name of the custom Apex class that checks service resources’ external calendar events and returns the time slots where service resources are already booked. Available in API version 50.0 and later.
- IsSvcTerritoryMemberShiftUsed? boolean - Indicates whether the record is svc territory member shift used (true) or not (false)
- IsSvcTerrOpHoursWithShiftsUsed? boolean - Indicates whether the record is svc terr op hours with shifts used (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentTopicTimeSlotFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentTopicTimeSlotHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AppointmentTopicTimeSlotId? string - ID of the associated appointment topic time slot
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppointmentTopicTimeSlotSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- TimeSlotId? string - ID of the associated time slot
- WorkTypeId? string - ID of the associated work type
- WorkTypeGroupId? string - ID of the associated work type group
- OperatingHoursId? string - ID of the associated operating hours
- AppointmentTopicTimeSlotKey? string - Appointment topic time slot key
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppTabMemberSObject
Represents the list of tabs for each of the available apps.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - A unique virtual Salesforce ID for the color.
- AppDefinitionId? string - The ID of the AppDefinition object.
- TabDefinitionId? string - The ID of the TabDefinition object.
- SortOrder? int - The number used to sort this tab in the application.
- WorkspaceDriverField? string - Refers to the workspace mapping in the CustomApplication Metadata API object.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AppUsageAssignmentSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RecordId? string - ID of the associated record
- AppUsageType? string - Type of the app usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AsgnRsrcApptSchdEventSObject
Fields
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- AssignedResourceId? string - ID of the associated assigned resource
- ServiceResourceId? string - ID of the associated service resource
- IsRequiredResource? boolean - Indicates whether the record is required resource (true) or not (false)
- IsPrimaryResource? boolean - Indicates whether the record is primary resource (true) or not (false)
- ServiceResourceUserId? string - ID of the associated service resource user
- ServiceResourceUserName? string - Name of the service resource user
- ServiceResourceUserEmail? string - Service resource user email
- ChangedFields? record {} - Changed fields
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetActionSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssetActionNumber? string - Asset action number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AssetId? string - ID of the associated asset
- Type? string - Type or category of the record
- Category? string - Category of the record
- CategoryEnum? string - Category enum
- ActionDate? string - Date of the action
- ProductAmountChange? decimal - Product amount change
- AdjustmentAmountChange? decimal - Adjustment amount change
- EstimatedTaxChange? decimal - Estimated tax change
- ActualTaxChange? decimal - Actual tax change
- SubtotalChange? decimal - Subtotal change
- QuantityChange? decimal - Quantity change
- MrrChange? decimal - Mrr change
- Amount? decimal - Amount associated with the record
- TotalInitialSaleAmount? decimal - Total initial sale amount
- TotalRenewalsAmount? decimal - Total renewals amount
- TotalUpsellsAmount? decimal - Total upsells amount
- TotalDownsellsAmount? decimal - Total downsells amount
- TotalCrossSellsAmount? decimal - Total cross sells amount
- TotalCancellationsAmount? decimal - Total cancellations amount
- TotalTransfersAmount? decimal - Total transfers amount
- TotalTermsAndConditionsAmount? decimal - Total terms and conditions amount
- TotalOtherAmount? decimal - Total other amount
- TotalAmount? decimal - Total amount for the record
- TotalQuantity? decimal - Total quantity
- TotalMrr? decimal - Total mrr
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetActionSourceSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssetActionSourceNumber? string - Asset action source number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AssetActionId? string - ID of the associated asset action
- ReferenceEntityItemId? string - ID of the associated reference entity item
- ProductAmount? decimal - Product amount
- AdjustmentAmount? decimal - Adjustment amount applied to the record
- EstimatedTax? decimal - Estimated tax
- ActualTax? decimal - Actual tax
- Subtotal? decimal - Subtotal amount before adjustments and tax
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- Quantity? decimal - Quantity associated with the record
- TransactionDate? string - Date of the transaction
- ExternalReference? string - External reference
- ExternalReferenceDataSource? string - External reference data source
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- ContactId? string - ID of the associated contact
- AccountId? string - ID of the associated account
- ParentId? string - ID of the parent record
- RootAssetId? string - ID of the associated root asset
- Product2Id? string - ID of the associated product
- IsCompetitorProduct? boolean - Indicates whether the record is competitor product (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Name? string - Name of the record
- SerialNumber? string - Serial number
- InstallDate? string - Date of the install
- PurchaseDate? string - Date of the purchase
- UsageEndDate? string - Date of the usage end
- LifecycleStartDate? string - Date of the lifecycle start
- LifecycleEndDate? string - Date of the lifecycle end
- Status? string - Current status of the record
- Price? decimal - Price of the record
- Quantity? decimal - Quantity associated with the record
- Description? string - Description of the record
- OwnerId? string - ID of the user who owns the record
- AssetProvidedById? string - ID of the associated asset provided by
- AssetServicedById? string - ID of the associated asset serviced by
- IsInternal? boolean - Indicates whether the record is internal (true) or not (false)
- HasLifecycleManagement? boolean - Indicates whether the record has lifecycle management (true) or not (false)
- CurrentMrr? decimal - Current mrr
- CurrentLifecycleEndDate? string - Date of the current lifecycle end
- CurrentQuantity? decimal - Current quantity
- CurrentAmount? decimal - Current amount
- TotalLifecycleAmount? decimal - Total lifecycle amount
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- PostalCode? string - Postal code of the address
- Country? string - Country of the address
- Latitude? decimal - Latitude coordinate of the address
- Longitude? decimal - Longitude coordinate of the address
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - Compound address field
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssetId? string - ID of the associated asset
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetRelationshipFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetRelationshipHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssetRelationshipId? string - ID of the associated asset relationship
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetRelationshipSObject
Represents a non-hierarchical relationship between assets due to replacement, upgrade, or other circumstances.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssetRelationshipNumber? string - An auto-generated number identifying the asset relationship.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date the asset relationship was last viewed.
- LastReferencedDate? string - The date when the asset relationship was last modified. Its label in the user interface is Last Modified Date.
- AssetId? string - The replacement asset.
- RelatedAssetId? string - The asset being replaced.
- FromDate? string - The day the replacement asset is installed.
- ToDate? string - The day the replacement asset is uninstalled.
- RelationshipType? string - The type of relationship between the assets. This field comes with three values—Replacement, Upgrade, and Crossgrade—but you can create more in Setup.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetShareSObject
Represents a sharing entry on an Asset.
Fields
- Id? string - Unique identifier for the record
- AssetId? string - ID of the Asset associated with this sharing entry. This field can't be updated.
- UserOrGroupId? string - ID of the User or Group that has been given access to the Asset. This field can't be updated.
- AssetAccessLevel? string - Level of access that the User or Group has to the Asset. The possible values are: Read Edit All This value is not valid for creating or deleting records. This field must be set to an access level that is higher than the organization’s default access level for cases.
- RowCause? string - Reason that this sharing entry exists. You can only write to this field when its value is either omitted or set to Manual (default). You can create a value for this field in API versions 32.0 and later with the correct organization-wide sharing settings.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetSObject
Represents an item of commercial value, such as a product sold by your company or a competitor, that a customer has purchased and installed.
Fields
- Id? string - Unique identifier for the record
- ContactId? string - Required if AccountId isn’t specified. ID of the Contact associated with this asset. Must be a valid contact ID that has an account parent (but doesn’t need to match the asset’s AccountId).
- AccountId? string - (Required) ID of the Account associated with this asset. Must be a valid account ID. Required if ContactId isn’t specified.
- ParentId? string - The asset’s parent asset. Its UI label is Parent Asset.
- RootAssetId? string - (Read only) The top-level asset in an asset hierarchy. Depending on where an asset lies in the hierarchy, its root could be the same as its parent. Its UI label is Root Asset.
- Product2Id? string - (Optional) ID of the Product2 associated with this asset. Must be a valid Product2 ID. Its UI label is Product.
- ProductCode? string - The product code of the related product.
- IsCompetitorProduct? boolean - Indicates whether this Asset represents a product sold by a competitor (true) or not (false). Default value is false. Its UI label is Competitor Asset.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - (Required) Name of the asset. Label is Asset Name.
- SerialNumber? string - Serial number for this asset.
- InstallDate? string - Date when the asset was installed.
- PurchaseDate? string - Date on which this asset was purchased.
- UsageEndDate? string - Date when usage for this asset ends or expires.
- LifecycleStartDate? string - Date of the lifecycle start
- LifecycleEndDate? string - Date of the lifecycle end
- Status? string - Customizable picklist of values. The default picklist includes the following values: Purchased Shipped Installed Registered Obsolete
- Price? decimal - Price paid for this asset.
- Quantity? decimal - Quantity purchased or installed.
- Description? string - Description of the asset.
- OwnerId? string - The asset’s owner. By default, the asset owner is the user who created the asset record. Its UI label is Asset Owner.
- AssetProvidedById? string - The account that provided the asset, typically a manufacturer.
- AssetServicedById? string - The account in charge of servicing the asset.
- IsInternal? boolean - Indicates that the asset is produced or used internally (true) or not (false). Default value is false. Its UI label is Internal Asset.
- AssetLevel? int - The asset’s position in an asset hierarchy. If the asset has no parent or child assets, its level is 1. Assets that belong to a hierarchy have a level of 1 for the root asset, 2 for the child assets of the root asset, 3 for their children, and so forth.On assets created before the introduction of this field, the asset level defaults to –1. After the asset record is updated, the asset level is calculated and automatically updated.
- StockKeepingUnit? string - The SKU assigned to the related product.
- HasLifecycleManagement? boolean - Indicates whether the record has lifecycle management (true) or not (false)
- CurrentMrr? decimal - Current mrr
- CurrentLifecycleEndDate? string - Date of the current lifecycle end
- CurrentQuantity? decimal - Current quantity
- CurrentAmount? decimal - Current amount
- TotalLifecycleAmount? decimal - The total amount of revenue for the asset, including revenue from each stage in the asset lifecycle.
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- PostalCode? string - Postal code of the address
- Country? string - Country of the address
- Latitude? decimal - Latitude coordinate of the address
- Longitude? decimal - Longitude coordinate of the address
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - Compound address field
- LastViewedDate? string - The date and time that the asset was last viewed.
- LastReferencedDate? string - The date and time that the asset was last modified. Its UI label is Last Modified Date.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetStatePeriodSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssetStatePeriodNumber? string - Asset state period number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AssetId? string - ID of the associated asset
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- Quantity? decimal - Quantity associated with the record
- Amount? decimal - Amount associated with the record
- Mrr? decimal - Mrr
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssetTokenEventSObject
The documentation has moved to AssetTokenEvent in the Platform Events Developer Guide.
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- ConnectedAppId? string - ID of the associated connected app
- UserId? string - ID of the user associated with the record
- AssetId? string - ID of the associated asset
- Name? string - Name of the record
- DeviceId? string - ID of the associated device
- DeviceKey? string - Device key
- Expiration? string - Expiration
- AssetSerialNumber? string - Asset serial number
- AssetName? string - Name of the asset
- ActorTokenPayload? string - Actor token payload
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssignedResourceChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- AssignedResourceNumber? string - Assigned resource number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ServiceAppointmentId? string - ID of the associated service appointment
- ServiceResourceId? string - ID of the associated service resource
- IsRequiredResource? boolean - Indicates whether the record is required resource (true) or not (false)
- Role? string - Role associated with the record
- EventId? string - ID of the associated event
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssignedResourceFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssignedResourceSObject
Represents a service resource who is assigned to a service appointment in Field Service and Lightning Scheduler. Assigned resources appear in the Assigned Resources related list on service appointments.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssignedResourceNumber? string - An auto-generated number identifying the resource assignment.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ServiceAppointmentId? string - The service appointment that the resource is assigned to.
- ServiceResourceId? string - The resource who is assigned to the service appointment.
- IsRequiredResource? boolean - Indicates whether the record is required resource (true) or not (false)
- Role? string - Role associated with the record
- EventId? string - ID of the associated event
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssignmentRuleSObject
Represents an assignment rule associated with a Case or Lead.
Fields
- Id? string - Unique identifier for the record
- Name? string - Name of this assignment rule.
- SobjectType? string - Type of assignment rule—Case or Lead.
- Active? boolean - Indicates whether this assignment rule is active (true) or not (false).
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssociatedLocationHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssociatedLocationId? string - ID of the associated associated location
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AssociatedLocationSObject
Represents a link between an account and a location in Field Service. You can associate multiple accounts with one location. For example, a shopping center location may have multiple customer accounts.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AssociatedLocationNumber? string - Auto-generated number identifying the associated location.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date the associated location was last viewed.
- LastReferencedDate? string - The date the associated location was last modified.
- ParentRecordId? string - The account associated with the location.
- LocationId? string - The location associated with the address.
- Type? string - Picklist of address types. The values are: Bill To Ship To
- ActiveFrom? string - Date and time the associated location is active.
- ActiveTo? string - Date and time the associated location stops being active.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AsyncApexJobSObject
Represents an individual Apex sharing recalculation job, a batch Apex job, a method with the future annotation, or a job that implements Queueable. Use this object to query Apex batch jobs in your organization.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- JobType? string - The type of job being processed. Valid values are: Future SharingRecalculation ScheduledApex BatchApex BatchApexWorker TestRequest TestWorker ApexToken Queueable
- ApexClassId? string - The ID of the Apex class executing the job. Label is Class ID.
- Status? string - The status of the job. Valid values are: Holding1 Queued Preparing Processing Aborted Completed Failed 1 This status applies to batch jobs in the Apex flex queue.
- JobItemsProcessed? int - Number of job items processed. Label is Batches Processed.
- TotalJobItems? int - Total number of batches processed. Each batch contains a set of records. Label is Total Batches.
- NumberOfErrors? int - Total number of batches with a failure. A batch is considered transactional, so any unhandled exceptions constitute an entire failure of the batch. Label is Failures.
- CompletedDate? string - The date and time when the job was completed.
- MethodName? string - The name of the Apex method being executed. Label is Apex Method.
- ExtendedStatus? string - If one or more errors occurred during the batch processing, this contains a short description of the first error. A more detailed description of that error, along with any subsequent errors, is emailed to the last user who modified the batch class. This field is available in API version 19.0 and later.
- ParentJobId? string - Fill out your description here! Remember: table cells should never start with a paragraph tag. It's only here to wrap the draft-comment tag.
- LastProcessed? string - Fill out your description here! Remember: table cells should never start with a paragraph tag. It's only here to wrap the draft-comment tag.
- LastProcessedOffset? int - Fill out your description here! Remember: table cells should never start with a paragraph tag. It's only here to wrap the draft-comment tag.
- CronTriggerId? string - ID of the associated cron trigger
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AsyncOperationEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- OperationId? string - ID of the associated operation
- SourceEvent? record {} - Source event
- OperationDetails? record {} - Operation details
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AsyncOperationLogSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AsyncOperationNumber? string - Async operation number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- ExternalReference? string - External reference
- Description? string - Description of the record
- Status? string - Current status of the record
- Type? string - Type or category of the record
- StartedAt? string - Started at
- FinishedAt? string - Finished at
- LastStatusUpdateAt? string - Last status update at
- Error? string - Error
- RelatedRecordId? string - ID of the related record
- Request? string - Request
- Response? string - Response
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AsyncOperationStatusSObject
Fields
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- Fields? record {} - Fields
- Status? string - Current status of the record
- Category? string - Category of the record
- Message? string - Message content of the record
- StatusCode? string - Status code of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AttachedContentDocumentSObject
This read-only object contains all ContentDocument objects associated with an object.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LinkedEntityId? string - ID of the record the ContentDocument is attached to.
- ContentDocumentId? string - ID of the attached ContentDocument.
- Title? string - Title of the attached ContentDocument.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- FileType? string - Type of document, determined by the file extension.
- ContentSize? int - Size of the document in bytes.
- FileExtension? string - File extension of the attached ContentDocument. This field is available in API version 31.0 and later.
- ContentUrl? string - URL for links and Google Docs. This field is set only for links and Google Docs, and is one of the fields that determine the FileType. This field is available in API version 31.0 and later.
- ExternalDataSourceName? string - Name of the external data source in which the document is stored. This field is set only for external documents that are connected to Salesforce. This field is available in API version 32.0 and later.
- ExternalDataSourceType? string - Type of external data source in which the document is stored. This field is set only for external documents that are connected to Salesforce. This field is available in APIAPI version 35.0 and later.
- SharingOption? string - Controls whether or not sharing is frozen for a file. Only administrators and file owners with Collaborator access to the file can modify this field. Default is Allowed, which means that new shares are allowed. When set to Restricted, new shares are prevented without affecting existing shares. This field is available in API versions 35.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AttachmentSObject
Represents a file that a User has uploaded and attached to a parent object.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ParentId? string - Required. ID of the parent object of the attachment. The following objects are supported as parents of attachments: Account Asset Campaign Case Contact Contract Custom objects EmailMessage EmailTemplate Event Lead Opportunity Product2 Solution Task
- Name? string - Required. Name of the attached file. Maximum size is 255 characters. Label is File Name.
- IsPrivate? boolean - Indicates whether this record is viewable only by the owner and administrators (true) or viewable by all otherwise-allowed users (false). During a create or update call, it is possible to mark an Attachment record as private even if you are not the owner. This can result in a situation in which you can no longer access the record that you just inserted or updated. Label is Private. Attachments on tasks or events can't be marked private.
- ContentType? string - The content type of the attachment. If the Don't allow HTML uploads as attachments or document records security setting is enabled for your organization, you cannot upload files with the following file extensions: .htm, .html, .htt, .htx, .mhtm, .mhtml, .shtm, .shtml, .acgi, .svg. When you insert a document or attachment through the API, make sure that this field is set to the appropriate MIME type.
- BodyLength? int - Size of the file (in bytes).
- Body? record {} - Required. Encoded file data.
- OwnerId? string - ID of the User who owns the attachment. This field was required previous to release 9.0. Beginning with release 9.0, it can be null on create. The owner of an attachment on a task or event must be the same as the owner of the task or event.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - Description of the attachment. Maximum size is 500 characters. This field is available in API version 18.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuraDefinitionBundleInfoSObject
For internal use only.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- AuraDefinitionBundleId? string - ID of the associated aura definition bundle
- ApiVersion? decimal - API version of the record
- DeveloperName? string - Unique developer name for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuraDefinitionBundleSObject
Represents a Lightning Aura component definition bundle, such as a component or application bundle. A bundle contains a Lightning Aura component definition and all its related resources.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the record in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. This field is automatically generated but you can supply your own value if you create the record using the API.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - The language of the MasterLabel.
- MasterLabel? string - Master label for the Lightning bundle. This internal label doesn’t get translated.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApiVersion? decimal - The API version for this bundle. Every bundle has an API version specified at creation.
- Description? string - The text description of the bundle. Maximum size of 255 characters.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuraDefinitionInfoSObject
For internal use only.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- AuraDefinitionBundleInfoId? string - ID of the associated aura definition bundle info
- AuraDefinitionId? string - ID of the associated aura definition
- DefType? string - Type of the def
- Format? string - Format
- Source? string - Source of the record
- LastModifiedDate? string - Date and time when the record was last modified
- DeveloperName? string - Unique developer name for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuraDefinitionSObject
Represents an Aura component definition, such as component markup, a client-side controller, or an event.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AuraDefinitionBundleId? string - The ID of the bundle containing the definition. A bundle contains a Lightning definition and all its related resources.
- DefType? string - The definition type. Valid values are: APPLICATION — Lightning Aura Components app CONTROLLER — client-side controller COMPONENT — component markup EVENT — event definition HELPER — client-side helper INTERFACE — interface definition RENDERER — client-side renderer STYLE — style (CSS) resource PROVIDER — reserved for future use MODEL — deprecated, do not use TESTSUITE — reserved for future use DOCUMENTATION — documentation markup TOKENS — tokens collection DESIGN — design definition SVG — SVG graphic resource MODULE — reserved for future use
- Format? string - The format of the definition. Valid values are: XML for component markup JS for JavaScript code CSS for styles TEMPLATE_CSS reserved for future use SVG for an SVG graphic
- Source? string - The contents of the definition. This is all the markup or code for the definition.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthConfigProvidersSObject
Represents an authentication provider that’s configured in an organization. This object is a child of the AuthConfig object.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- AuthConfigId? string - The ID for this configuration.
- AuthProviderId? string - The ID of the Auth. Provider or SAML configuration.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthConfigSObject
Represents authentication options for an org with a My Domain configured, an Experience Cloud site, or a custom domain.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The name of the domain created using My Domain or, for an Experience Cloud site, a concatenated string of site name_site prefix.
- Language? string - The language for the organization.
- MasterLabel? string - The text that’s used to identify the Visualforce page in Setup.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Url? string - The login URL of the organization for this AuthConfig object. Each URL has only one associated AuthConfig object.
- AuthOptionsUsernamePassword? boolean - If true, the login option for a username and password appears on the login page.
- AuthOptionsSaml? boolean - If true, at least one SAML configuration is selected to show up on the login page. If the organization has only one SAML configuration, this value indicates whether that configuration is selected to show up on the login page. If the organization has multiple SAML configurations, see the child AuthConfigProvider objects for each configuration.
- AuthOptionsAuthProvider? boolean - If true, at least one Auth. Provider is selected to show up on the login page, and this object has child AuthConfigProvider objects for each provider.
- AuthOptionsCertificate? boolean - If true, certificate-based login displays on the My Domain login page.
- IsActive? boolean - Whether this configuration is in use.
- Type? string - The organization type for this object. Org (includes custom domains) Community Site Portal
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormConsentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ConsentGiverId? string - ID of the associated consent giver
- AuthorizationFormTextId? string - ID of the associated authorization form text
- ConsentCapturedSource? string - Consent captured source
- ConsentCapturedSourceType? string - Type of the consent captured source
- ConsentCapturedDateTime? string - Date and time of the consent captured
- Status? string - Current status of the record
- DocumentVersionId? string - ID of the associated document version
- RelatedRecordId? string - ID of the related record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormConsentHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AuthorizationFormConsentId? string - ID of the associated authorization form consent
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormConsentShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormConsentSObject
Represents the date and way in which a user consented to an authorization form.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - Required. The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. The name of the authorization form consent.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ConsentGiverId? string - Required. The ID of the person consenting to the authorization form.
- AuthorizationFormTextId? string - Required. The authorization form text that the Individual consented to.
- ConsentCapturedSource? string - Required. The source through which consent was captured. For example, user@example.com, www.example.com.
- ConsentCapturedSourceType? string - Required. The source type through which consent was captured. For example, phone, email, or website.
- ConsentCapturedDateTime? string - Required. The date and time that consent was given.
- Status? string - The status of the authorization form.
- DocumentVersionId? string - The ID of the document version for which consent is given.
- RelatedRecordId? string - The ID of a record showing consent of an authorization form.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormDataUseHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AuthorizationFormDataUseId? string - ID of the associated authorization form data use
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormDataUseShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormDataUseSObject
Represents the data use consented to in an authorization form.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. The name of the authorization form data use.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- AuthorizationFormId? string - Required. The ID of the associated authorization form record.
- DataUsePurposeId? string - Required. Identifies the data use purpose record associated with the authorization form.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AuthorizationFormId? string - ID of the associated authorization form
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormSObject
Represents the specific version and effective dates of a form that is associated with consent, such as a privacy policy or terms and conditions.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. The name of the authorization form.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- RevisionNumber? string - The revision number of the authorization form. For example, "rev1.21."
- EffectiveFromDate? string - The date when the authorization form takes effect.
- EffectiveToDate? string - The date when the authorization form is no longer in effect.
- DefaultAuthFormTextId? string - Required. The ID of the default authorization form text to use if text isn’t available for a specific language.
- IsSignatureRequired? boolean - Indicates whether the authorization form requires a signature.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormTextFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormTextHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- AuthorizationFormTextId? string - ID of the associated authorization form text
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthorizationFormTextSObject
Represents an authorization form’s text and language settings.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. The name of the authorization form text.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- AuthorizationFormId? string - Required. The ID of the associated authorization form record.
- FullAuthorizationFormUrl? string - The URL where the full text of the authorization form is located.
- SummaryAuthFormText? string - A shortened version of the authorization form that is displayed to the user.
- Locale? string - The combined language and locale ISO code that control the language of the authorization form text. Locale and LocaleSelection have the same function. Locale can contain custom values not included in the picklist if added before version 47.0.
- LocaleSelection? string - The combined language and locale ISO code that control the language of the authorization form text. Locale and LocaleSelection have the same function.
- ContentDocumentId? string - The ID of the ContentDocument that provides the authorization form’s text.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthProviderSObject
Represents an authentication provider (auth provider). An auth provider lets users log in to your Salesforce org from an external service provider, such as Facebook, Google, or GitHub.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- ProviderType? string - Required. The third-party authentication provider to use. Valid values include: Apple. Available in API version 48.0 and later. Facebook. Salesforce. Janrain. LinkedIn. Available in API version 32.0 and later. Twitter. Available in API version 32.0 and later. OpenIdConnect. Available in API version 29.0 and later. MicrosoftACS—Microsoft Access Control Service provides authentication for a Microsoft Office 365 service, like SharePoint Online. Available in API version 31.0 and later. GitHub—Provides authentication for a GitHub provider. Used to log in users of your Lightning Platform app to GitHub using OAuth. When logged in to GitHub, your app can make calls to GitHub APIs. The GitHub provider isn’t available as an SSO provider, so users can’t log in to your Salesforce org using their GitHub login credentials. Available in API version 35.0 and later. Custom—A provider configured with a custom authentication provider plug-in. Available in API version 36.0 and later.
- FriendlyName? string - Required. A user-friendly name for the authentication provider.
- DeveloperName? string - Required. Used when referring to the authentication provider from a program.
- RegistrationHandlerId? string - An existing Apex class that implements the Auth.RegistrationHandler interface.
- ExecutionUserId? string - Required when specifying a registration handler class. The username of the Salesforce admin or system user who runs the Apex handler, which provides the context in which the Apex handler runs. For example, if the Apex handler creates a contact, the creation can be easily traced back to the registration process. In production, use a system user. The user must have the Manage Users permission. Available in API version 27.0 and later.
- PortalId? string - ID of the associated portal
- ConsumerKey? string - The app’s key that is registered at the third-party (external) authentication provider. In API version 33.0 and later, for Salesforce-managed auth providers, leave the field blank to let Salesforce supply and manage the value.
- ConsumerSecret? string - The consumer secret of the authentication provider that is registered at the third-party SSO provider. It’s used by the consumer for identification to Salesforce. In API version 33.0 and later, for Salesforce-managed auth providers, leave the field blank to let Salesforce supply and manage the value. You can create your own consumer secret on create(). However, after you set it, you can’t change the value.
- ErrorUrl? string - A custom error URL for the authentication provider to use to report errors.
- AuthorizeUrl? string - Required when creating an OpenID Connect authentication provider. The OAuth authorization endpoint URL. Available in API version 29.0 and later. In API version 33.0 and later, for Salesforce-managed auth providers, leave the field blank to let Salesforce supply and manage the value.
- TokenUrl? string - The OAuth token endpoint URL of an OpenID Connect authentication provider. Available in API version 29.0 and later. In API version 33.0 and later, for Salesforce-managed auth providers, leave the field blank to let Salesforce supply and manage the value.
- UserInfoUrl? string - The OpenID Connect endpoint URL of the OpenID Connect authentication provider. Available in API version 29.0 and later. In API version 33.0 and later, for Salesforce-managed auth providers, leave the field blank to let Salesforce supply and manage the value.
- DefaultScopes? string - For OpenID Connect authentication providers, the scopes to send with the authorization request, if not specified when a flow starts. Available in API version 29.0 and later. In API version 33.0 and later, for Salesforce-managed auth providers, leave the field blank to let Salesforce supply and manage the value.
- IdTokenIssuer? string - Available when configuring an OpenID Connect authentication provider, the source of the authentication token in https: URI format. If provided, Salesforce validates the returned id_token value. OpenID Connect requires returning an id_token value with the access_token value. Available in API version 30.0 and later.
- OptionsSendAccessTokenInHeader? boolean - If enabled (true), the access token is sent to the UserInfoUrl in a header instead of a query string. Available in API version 30.0 and later.
- OptionsSendClientCredentialsInHeader? boolean - Required when creating an OpenID Connect authentication provider. If enabled (true), the client credentials are sent in a header to the tokenUrl instead of a query string. The credentials are in the standard OpenID Connect Basic Credentials header format, which is Basic <token>, where <token> is the base64-encoded string "clientkey:clientsecret". Available in API version 30.0 and later.
- OptionsIncludeOrgIdInId? boolean - Used to differentiate between users with the same user ID from two sources (such as two sandboxes). If enabled (true), Salesforce stores the org ID of the third-party identity in addition to the user ID. After you enable this setting, you can’t disable it. Applies only to a Salesforce-managed auth provider. Available in API version 32.0 and later.
- OptionsSendSecretInApis? boolean - Determines whether the encrypted consumer secret appears in API responses. If enabled (default), the secret appears in the response. If disabled (false), responses don’t include the consumer secret. For security, you can disable the setting. However, keep in mind that: By disabling this setting, the consumer secret is excluded from API responses in all API versions. Change sets and other metadata deployments break because both the consumer key and secret are expected. To fix this problem, insert the consumer key manually during deployment. Available in API version 47.0 and later.
- OptionsIsMuleSoftUS? boolean - Options is mule soft us
- OptionsIsMuleSoftEU? boolean - Options is mule soft eu
- OptionsRequireMfa? boolean - Options require mfa
- OptionsIsPkceEnabled? boolean - Options is pkce enabled
- IconUrl? string - The path to an icon to use as a button on the login page. Users click the button to log in with the associated authentication provider, such as Twitter or Facebook. Available in API version 32.0 and later.
- LogoutUrl? string - The destination for users after they log out if they authenticated using single sign-on. The URL must be fully qualified with an http or https prefix, such as https://acme.my.salesforce.com. Available in API version 33.0 and later.
- PluginId? string - An existing Apex class that extends the Auth.AuthProviderPluginClass abstract class. Available in API version 39.0 and later.
- CustomMetadataTypeRecord? string - Required when creating a custom authentication provider plug-in. The API name of the custom authentication provider. Available in API version 36.0 and later.
- EcKey? string - Required when using Apple as a third-party authentication provider. Available in API version 48.0 and later.
- AppleTeam? string - Required when using Apple as a third-party authentication provider. A 10-character team ID, obtained from an Apple developer account. Available in API version 48.0 and later.
- SsoKickoffUrl? string - The URL for performing SSO into Salesforce from a third party by using its third-party credentials. This field is read-only. Available in API version 43.0 and later.
- LinkKickoffUrl? string - The URL for linking existing Salesforce users to a third-party account. This field is read-only. Available in API version 43.0 and later.
- OauthKickoffUrl? string - The URL for obtaining OAuth access tokens for a third party. This field is read-only. Available in API version 43.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: AuthSessionSObject
The AuthSession object represents an individual user session in your organization.
Fields
- Id? string - The current session’s ID.
- UsersId? string - The user’s Salesforce user ID.
- CreatedDate? string - The date and time this session was created. This field is a standard system field.
- LastModifiedDate? string - The date and time this session was last updated. A session expires when the current date and time equals LastModifiedDate + NumSecondsValid. This field is a standard system field.
- NumSecondsValid? int - The number of seconds before the session expires, starting from the last update time.
- UserType? string - The kind of user for this session. Types include Standard, Partner, Customer Portal Manager, High Volume Portal, and CSN Only.
- SourceIp? string - IP address of the end user’s device from which the session started. This address can be an IPv4 or IPv6 address.
- LoginType? string - The type of login used to access the session. Possible values are: AJAX Toolkit Apex Office Toolkit AppExchange Application AppStore Certificate-based login Chatter Communities Eternal User Third Party SSO Chatter Communities External User Community Customer Service Portal Third-Party SSO Customer Service Portal DataJunction DB Replication Employee Login to Community Excel Integration Help and Training HOTP YubiKey Lightning Login Networks Portal API Only Offline Client Order Center Other Apex API Outlook Integration Partner Portal Third-Party SSO Partner Portal Partner Product Passwordless Login Remote Access 2.0 Remote Access Client Sales Anywhere Salesforce Outlook Integration Salesforce.com Website SAML Chatter Communities External User SSO SAML Customer Service Portal SSO SAML Idp Initiated SSO SAML Partner Portal SSO SAML Sfdc Initiated SSO SAML Site SSO Self-Service Signup Sync SysAdmin Switch Third Party SSO Validate
- SessionType? string - The type of session. Common ones are UI, Content, API, and Visualforce.
- SessionSecurityLevel? string - Standard or High, depending upon the authentication method used.
- LogoutUrl? string - The page or view to display after users log out of an Experience Cloud site, or an org if they authenticated using SAML. This field is available in API version 32.0 and later.
- ParentId? string - The 18-character ID for the parent session, if one exists (for example, if the current session is for a canvas app). If the current session doesn’t have a parent, this value is the current session’s own ID.
- LoginHistoryId? string - The 18-character ID for a successful login event. When a session is reused, Salesforce updates the LoginHistoryId with the value from the most recent login. This field is available in API version 33.0 and later.
- LoginGeoId? string - The 18-character ID for the record of the geographic location of the user for a login event. Due to the nature of geolocation technology, the accuracy of geolocation fields (for example, country, city, postal code) can vary. This field is available in API version 34.0 and later.
- IsCurrent? boolean - If true, the session is a member of the user’s current session family. This field is available in API version 37.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BackgroundOperationSObject
Represents a background operation in an asynchronous job queue.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Identifies the background operation.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- SubmittedAt? string - When the operation was added to the job queue.
- Status? string - Status of the background operation. The options are: New Scheduled Canceled Merged Waiting Running Error Complete
- ExecutionGroup? string - Applies only if the operation is merged with other operations into an execution group to be processed in bulk. Identifies the execution group.
- SequenceGroup? string - Identifies the sequence group. Applies only if the operation is merged with other operations into an execution group to be processed in bulk. Within an execution group, operations can be placed into a sequence group to be executed in a specific order.
- SequenceNumber? int - Order position within the sequence group. Applies only if the operation is merged with other operations into an execution group to be processed in bulk. Within an execution group, operations can be placed into a sequence group to be executed in a specific order.
- GroupLeaderId? string - Applies only if the operation is merged with other operations into an execution group to be processed in bulk. Identifies the operation that’s selected as the leader of the execution group.
- StartedAt? string - When the operation started running.
- FinishedAt? string - When the operation reached the status of completed or error.
- WorkerUri? string - URI of the worker that performed the operation. Example for a Salesforce Connect OData operation: services/data/v35.0/xds/upsert
- Timeout? int - Maximum time in milliseconds to wait for results after the operation started running.
- ExpiresAt? string - After this time, the operation is removed from the asynchronous job queue. Applies only if the operation has a status of complete, canceled, error, or merged.
- NumFollowers? int - Applies only if the operation is merged with other operations into an execution group to be processed in bulk. Number of other operations that are in the execution group.
- ProcessAfter? string - The operation is scheduled to be processed after this time.
- ParentKey? string - Tag that identifies related sets of operations, if any.
- RetryLimit? int - Maximum number of retries to attempt. Applies only if the operation has an error status.
- RetryCount? int - Number of attempted retries. Applies only if the operation has an error status.
- RetryBackoff? int - Applies only if the operation has an error status. The first retry is attempted immediately. Each subsequent retry is increasingly delayed according to an exponential expression that’s multiplied by the RetryBackoff, in milliseconds. Specifically, the delay time is (2n-1)×R, where n is the RetryCount, and R is the RetryBackoff. The default value for RetryBackoff depends on the type of operation. For example, the RetryBackoff default for write operations on external objects is 1,000 milliseconds. For write operations, retries are attempted immediately, after 3 seconds, after 7 seconds, after 15 seconds, and so on.
- Error? string - The error message for the operation. Applies only if the operation has an error status.
- Type? string - Type or category of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BatchApexErrorEventSObject
The documentation has moved to BatchApexErrorEvent in the Platform Events Developer Guide.
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- ExceptionType? string - Type of the exception
- Message? string - Message content of the record
- StackTrace? string - Stack trace
- RequestId? string - ID of the associated request
- AsyncApexJobId? string - ID of the associated async apex job
- JobScope? string - Job scope
- DoesExceedJobScopeMaxLength? boolean - Does exceed job scope max length
- Phase? string - Phase
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BrandingSetPropertySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- BrandingSetId? string - ID of the associated branding set
- PropertyName? string - Name of the property
- PropertyValue? string - Property value
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BrandingSetSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BrandTemplateSObject
Letterhead for HTML EmailTemplate.
Fields
- Id? string - Unique identifier for the record
- Name? string - Label of the template as it appears in the user interface. Limited to 255 characters. Label is Brand Template Name.
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. Label is Letterhead Unique Name.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- IsActive? boolean - Indicates whether the letterhead is available for use (true) or not (false). Label is Active.
- Description? string - Description of the letterhead. Limited to 1000 characters.
- Value? string - The contents of the letterhead, in HTML, including any logos.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BriefcaseAssignmentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- UserOrGroupId? string - ID of the user or group that has been given access
- BriefcaseId? string - ID of the associated briefcase
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BriefcaseAssignmentSObject
Represents the assignment of a briefcase definition to selected users and user groups.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- UserOrGroupId? string - Required. ID of the user or group requiring access to the briefcase. Label is User or Group ID.
- BriefcaseId? string - Required. ID of the briefcase definition. Label is Briefcase Definition ID.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BriefcaseDefinitionChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BriefcaseDefinitionSObject
Represents a briefcase definition. A briefcase makes selected records available for users to view when they’re offline in the Salesforce Field Service mobile app for iOS and Android.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. Limited to 80 characters. Label is Name.
- Language? string - The language for the briefcase. This field defaults to the user's language unless the org is multi-language enabled. Specifies the language of the labels returned.
- MasterLabel? string - The master label for the briefcase. This internal label doesn’t get translated. Limited to 80 characters.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsActive? boolean - Indicates whether the briefcase is available for use (true) or not (false). Label is Active.
- Description? string - Description of the briefcase definition. Limited to 1024 characters.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BriefcaseRuleFilterSObject
Represents a filter criteria for a briefcase rule.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- BriefcaseRuleId? string - Required. ID of the briefcase rule.
- TargetEntityField? string - Required. The field to filter by. Compound fields and encrypted fields aren’t supported. Label is Field.
- FilterOperator? string - Required. The comparison operator for this rule filter.
- FilterValue? string - The value for the field and criteria. For example, true or false for a boolean field whose criteria or filter operator is Equals. Capitalization matters with date filter operators. Be sure to specify date literals in uppercase. Some valid date literals include TODAY, YESTERDAY and TOMORROW.
- FilterSeqNumber? int - Required. The filter number. When you apply multiple filters, the filters are numbered sequentially, 1, 2, 3, and so on.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BriefcaseRuleSObject
Represents a rule that specifies records for a briefcase definition.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- BriefcaseId? string - Required. ID of the briefcase definition. Label is Briefcase Definition ID.
- TargetEntity? string - The standard or custom object that the briefcase rule evaluates. Label is Target Object.
- ParentRuleId? string - ID of the associated parent rule
- FilterLogic? string - The filter logic for record selection, for example, 1 AND 2 where 1 and 2 correspond to filter 1 and filter 2. Filter logic operators include AND and OR. Limited to 255 characters. Label is Filter Logic.
- QueryScope? string - Required. A group of records to restrict the scope of this rule.
- RecordLimit? int - The record limit for the object. The recommended number for record limit is up to 500 records per object for optimal performance. The maximum number is 2000. Label is Limit.
- OrderBy? string - The field to order the records by, which determines how the records can be sorted. For example, AccountName or CreatedBy. Label is Order By.
- IsAscendingOrder? boolean - Required. Indicates whether the records should be sorted in ascending order. Label is Ascending.
- RelationshipField? string - Relationship field
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BulkApiResultEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- LoginHistoryId? string - ID of the login history record associated with the event
- Query? string - Query string associated with the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BulkApiResultEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- LoginHistoryId? string - ID of the login history record associated with the event
- Query? string - Query string associated with the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BusinessBrandShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BusinessBrandSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- OrgId? string - ID of the associated org
- ParentId? string - ID of the parent record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BusinessHoursSObject
Specifies the business hours of your support organization. Escalation rules are run only during these hours.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the business hours.
- IsActive? boolean - Indicates whether the business hours is active (true) or not active (false).
- IsDefault? boolean - Indicates whether the business hours are set as the default business hours (true) or not (false).
- SundayStartTime? record {} - Time that business opens.
- SundayEndTime? record {} - Time that business closes.
- MondayStartTime? record {} - Time that business opens.
- MondayEndTime? record {} - Time that business closes.
- TuesdayStartTime? record {} - Time that business opens.
- TuesdayEndTime? record {} - Time that business closes.
- WednesdayStartTime? record {} - Time that business opens.
- WednesdayEndTime? record {} - Time that business closes.
- ThursdayStartTime? record {} - Time that business opens.
- ThursdayEndTime? record {} - Time that business closes.
- FridayStartTime? record {} - Time that business opens.
- FridayEndTime? record {} - Time that business closes.
- SaturdayStartTime? record {} - Time that business opens.
- SaturdayEndTime? record {} - Time that business closes.
- TimeZoneSidKey? string - The time zone of the business hours.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- LastViewedDate? string - The date when the business hours were last viewed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BusinessProcessSObject
Represents a business process.
Fields
- Id? string - Unique identifier for the record
- Name? string - Required. Name of this business process. Limit: 80 characters.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- Description? string - Description of this business process. Limit: 255 characters.
- TableEnumOrId? string - Required. One of the following values: Case, Opportunity, or Solution. Label is Entity Enumeration Or ID.
- IsActive? boolean - Indicates whether this business process can be presented to users in the Salesforce user interface (true) or not (false) when creating a new record type or changing the business process of an existing record type.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BuyerGroupFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BuyerGroupHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- BuyerGroupId? string - ID of the associated buyer group
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BuyerGroupShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: BuyerGroupSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CalendarSObject
Represents a calendar. This can be a default user calendar, public calendar, resource calendar, or holiday calendar.
Fields
- Id? string - Unique identifier for the record
- Name? string - A user provided name that identifies the calendar. It is text-indexed for searchability. Note that this is not an enumerated field; it can be any string to a maximum length of 80 characters.
- UserId? string - The ID of the user that owns that calendar record. If Type=User, there’s a UserID associated (foreign key reference to the user). Otherwise, the user field is null.
- Type? string - The type of the calendar. Possible values are: Holiday (Holiday Calendar) Public (Public Calendar) Resource (Resource Calendar) User (User Calendar)
- IsActive? boolean - This field indicates whether a user can save events to the calendar.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CalendarViewShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CalendarViewSObject
These calendars can be created and assigned to users other than the creator. Available calendars include object, shared, public, resource, and user list calendars. Object calendars represent a calendar based on a Salesforce object, either standard or custom.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - Represents the user, user list, public, or resource calendar from where event data is populated.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - A user-provided name that identifies the calendar. This isn’t an enumerated field; it can be any string to a maximum length of 80 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CalendarModelId? string - ID of the associated calendar model
- IsDisplayed? boolean - Defines whether users can see a calendar’s records in their calendar view in the user interface. When true, records are visible in the user’s calendar view. When false, records are hidden from the user’s calendar view. The default is true.
- Color? string - Represents the color used in the background for records displayed in a user’s calendar view within the user interface.
- FillPattern? string - Represents the pattern displayed as the background for records displayed in a user’s calendar view within the user interface. Valid values include: verticalStripes ascDiagonalStripes descDiagonalStripes
- ListViewFilterId? string - References the ListView used to filter records represented by the CalendarView. ListView must have the same sObjectType. If no ListViewFilterId is defined, the calendar displays only records with the same owner as the CalendarView.
- DateHandlingType? string - Determined by the data type of the StartField. Valid values include:
- StartField? string - Represents the SobjectType field used as the start time for records displayed in a user’s calendar view within the user interface. Must be a date or dateTime field type.
- EndField? string - An optional field that represents the sObjectType field used as the end time for records displayed in a user’s calendar view within the user interface. Must be a date or dateTime field that matches the type in StartField.
- DisplayField? string - Represents the SobjectType field used as the subject for records displayed in a user’s calendar view within the user interface.
- SobjectType? string - The type of standard or custom Salesforce object that is used to create records for the CalendarView. Use the API name of the desired SobjectType.
- PublisherId? string - Represents the owner of the CalendarView.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CallCenterRoutingMapSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CallCenterId? string - ID of the associated call center
- ReferenceRecordId? string - ID of the associated reference record
- ExternalId? string - External identifier for the record
- QuickConnect? string - Quick connect
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CallCenterSObject
Represents a call center, which is a logical representation of a single computer-telephony integration (CTI) system instance in an organization.
Fields
- Id? string - System field that uniquely identifies this call center. Label is Call Center ID. This ID is created automatically when the call center is created.
- Name? string - The name of the call center. Limit is 80 characters.
- InternalName? string - The internal name of the call center. Limit is 80 characters.
- Version? decimal - The version of the CTI Toolkit used to create the call center (for versions 2.0 and later). This field is available in API version 18.0 and later.
- AdapterUrl? string - An optional field that specifies the location of where the CTI adapter is hosted. For example, http://localhost:11000. This field is available in API version 23.0 or later.
- CustomSettings? string - Specifies settings in the call center definition file, such as whether the call center uses the Open CTI, and SoftPhone properties, such as height in pixels. This field is available for Open CTI and in API version 25.0 or later.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CallCoachingMediaProviderSObject
Represents the media provider for call recordings.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ProviderName? string - The name of the media provider.
- ProviderDescription? string - The description of the media provider.
- IsActive? boolean - Whether the connection with the provider is active or not.
- ConversationVendorInfoId? string - ID of the associated conversation vendor info
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- Status? string - Current status of the record
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- ExpectedRevenue? decimal - Expected revenue
- BudgetedCost? decimal - Budgeted cost
- ActualCost? decimal - Actual cost
- ExpectedResponse? decimal - Expected response rate
- NumberSent? decimal - Number sent
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- Description? string - Description of the record
- NumberOfLeads? int - Number of leads
- NumberOfConvertedLeads? int - Number of converted leads
- NumberOfContacts? int - Number of contacts
- NumberOfResponses? int - Number of responses
- NumberOfOpportunities? int - Number of opportunities
- NumberOfWonOpportunities? int - Number of won opportunities
- AmountAllOpportunities? decimal - Total amount of all opportunities
- AmountWonOpportunities? decimal - Total amount of won opportunities
- OwnerId? string - ID of the user who owns the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CampaignMemberRecordTypeId? string - Record type ID for campaign members
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CampaignId? string - ID of the associated campaign
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignMemberChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CampaignId? string - ID of the associated campaign
- LeadId? string - ID of the associated lead
- ContactId? string - ID of the associated contact
- Status? string - Current status of the record
- HasResponded? boolean - Indicates whether the record has responded (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- FirstRespondedDate? string - Date of the first responded
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignMemberSObject
Represents the association between a campaign and either a lead or a contact.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CampaignId? string - Required. ID of the Campaign to which this Lead or Contact is associated.
- LeadId? string - Required. ID of the Lead who is associated with a Campaign.
- ContactId? string - Required. ID of the Contact who is associated with a Campaign.
- Status? string - Controls the HasResponded flag on this object. You can't directly set the HasResponded flag, as it is read-only. You can set it indirectly by setting this field in a create or update call. Each predefined value implies a HasResponded flag value. Each time you update this field, you implicitly update the HasResponded flag. In the Salesforce user interface, Marketing users can define valid status values for the Status picklist. They can choose one status as the default status. For each Status field value, they can also select which values to count as “Responded,” meaning that the HasResponded flag is set to true for those values. 40 character limit.When creating or updating campaign members, use the text value for Status instead of the ID from the CampaignMemberStatus object.
- HasResponded? boolean - Indicates whether the campaign member has responded to the campaign (true) or not (false). Label is Responded.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FirstRespondedDate? string - Indicates the date on which the campaign member was first given a responded status.
- Salutation? string - Salutation for the lead or contact.
- Name? string - First and last name of the contact or lead with which the campaign member is associated.
- FirstName? string - The first name of the contact or lead.
- LastName? string - The last name of the contact or lead. Limit is 80 characters.
- Title? string - Title for the lead or contact.
- Street? string - The street for the address of the lead or contact.
- City? string - The city for the address of the lead or contact.
- State? string - The state for the address of the lead or contact. Limit is 80 characters.
- PostalCode? string - The postal code of the lead or contact.
- Country? string - The country for the address of the lead or contact.
- Email? string - Email address for the contact or lead.
- Phone? string - The phone number of the lead or contact.
- Fax? string - Fax number for the contact or lead.
- MobilePhone? string - The mobile phone number of the lead or contact.
- Description? string - The description of the associated lead or contact.
- DoNotCall? boolean - Indicates that the contact does not wish to be called.
- HasOptedOutOfEmail? boolean - Indicates whether the contact or lead would prefer not to receive email from Salesforce (true) or not (false).
- HasOptedOutOfFax? boolean - Indicates that the contact or lead does not wish to receive faxes.
- LeadSource? string - The source from which the lead was obtained.
- CompanyOrAccount? string - The company or account of the lead or contact.
- Type? string - Indicates whether the campaign member is a lead or a contact.
- LeadOrContactId? string - The ID of the associated lead or contact.
- LeadOrContactOwnerId? string - The ID of the owner of the associated lead or contact.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignMemberStatusChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CampaignId? string - ID of the associated campaign
- SortOrder? int - Sort order for the record
- IsDefault? boolean - Indicates whether this is the default record (true) or not (false)
- HasResponded? boolean - Indicates whether the record has responded (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignMemberStatusSObject
One or more member status values defined for a campaign.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- CampaignId? string - ID of the campaign associated with this member status.
- Label? string - Label for the status in the picklist. Limited to 765 characters.
- SortOrder? int - Unique number order where this campaign member status appears in the picklist.
- IsDefault? boolean - Indicates whether this status is the default status (true) or not (false). Beginning with API version 39.0, there must be a default CampaignMemberStatus defined for every campaign.
- HasResponded? boolean - Indicates whether this status is equivalent to “Responded” (true) or not (false). Beginning with API version 39.0, at least one CampaignMemberStatus on each campaign must have a hasResponded value of true.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignShareSObject
Represents a sharing entry on a Campaign.
Fields
- Id? string - Unique identifier for the record
- CampaignId? string - ID of the Campaign associated with this sharing entry. This field can't be updated.
- UserOrGroupId? string - ID of the User or Group that has been given access to the Campaign. This field can't be updated.
- CampaignAccessLevel? string - Level of access that the User or Group has to the Campaign. The possible values are: Read Edit All (This value is not valid for creating or updating records.) This field must be set to an access level that is higher than the organization’s default access level for Campaign.
- RowCause? string - Reason that this sharing entry exists. You can only write to this field when its value is either omitted or set to Manual (default). You can create a value for this field in API versions 32.0 and later with the correct organization-wide sharing settings.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CampaignSObject
Represents and tracks a marketing campaign, such as a direct mail promotion, webinar, or trade show.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the campaign. Limit: is 80 characters.
- ParentId? string - ID of the parent Campaign record, if any.
- Type? string - Type of campaign, for example, Direct Mail or Referral Program. Limit: 40 characters.
- Status? string - Status of the campaign, for example, Planned, In Progress. Limit: 40 characters.
- StartDate? string - Starting date for the campaign.
- EndDate? string - Ending date for the campaign. Responses received after this date are still counted.
- ExpectedRevenue? decimal - Amount of money you expect to generate from the campaign.
- BudgetedCost? decimal - Amount of money budgeted for the campaign.
- ActualCost? decimal - Amount of money spent to run the campaign.
- ExpectedResponse? decimal - Percentage of responses you expect to receive for the campaign.
- NumberSent? decimal - Number of individuals targeted by the campaign. For example, the number of emails sent. Label is Num Sent.
- IsActive? boolean - Indicates whether this campaign is active (true) or not (false). Default value is false. Label is Active.
- Description? string - Description of the campaign. Limit: 32 KB. Only the first 255 characters display in reports.
- NumberOfLeads? int - Number of leads associated with the campaign. Label is Leads in Campaign.
- NumberOfConvertedLeads? int - Number of leads that were converted to an account and contact due to the marketing efforts in the campaign. Label is Converted Leads.
- NumberOfContacts? int - Number of contacts associated with the campaign. Label is Total Contacts.
- NumberOfResponses? int - Number of contacts and unconverted leads with a Member Status equivalent to “Responded” for the campaign. Label is Responses in Campaign.
- NumberOfOpportunities? int - Number of opportunities associated with the campaign. Label is Opportunities in Campaign.
- NumberOfWonOpportunities? int - Number of closed or won opportunities associated with the campaign. Label is Won Opportunities in Campaign.
- AmountAllOpportunities? decimal - Amount of money in all opportunities associated with the campaign, including closed/won opportunities. Label is Value Opportunities in Campaign.
- AmountWonOpportunities? decimal - Amount of money in closed or won opportunities associated with the campaign. Label is Value Won Opportunities in Campaign.
- OwnerId? string - ID of the user who owns this campaign. Default value is the user logging in to the API to perform the create.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastActivityDate? string - Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- CampaignMemberRecordTypeId? string - The record type ID for CampaignMember records associated with the campaign.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CardPaymentMethodSObject
References a credit card or debit card payment method. This entity implements the PaymentMethod entity interface.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CardPaymentMethodNumber? string - System-defined unique ID for the card payment method.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- DisplayCardNumber? string - Masked digits for the full credit card number except the last four digits.
- ExpiryMonth? int - The card’s expiration month.
- ExpiryYear? int - The card’s expiration year.
- StartMonth? int - Start month of the card.
- StartYear? int - Start year of the card.
- CardType? string - Defines the credit card bank.
- CardTypeCategory? string - Defines the credit card bank. Used for internal reference.
- AutoCardType? string - Card network type, derived from the card number. This is a system field.
- CardCategory? string - Defines whether the card is a credit card or debit card.
- AccountId? string - Customer account for the payment method.
- PaymentMethodStreet? string - Part of the address for the payment method.
- PaymentMethodCity? string - Part of the address for the payment method.
- PaymentMethodState? string - Part of the address for the payment method.
- PaymentMethodPostalCode? string - Part of the address for the payment method.
- PaymentMethodCountry? string - Part of the address for the payment method.
- PaymentMethodLatitude? decimal - Part of the address for the payment method.
- PaymentMethodLongitude? decimal - Part of the address for the payment method.
- PaymentMethodGeocodeAccuracy? string - Part of the address for the payment method.
- PaymentMethodAddress? record {} - Full address related to the card payment method. Also known as the billing address.
- NickName? string - User-defined nickname for the card payment method.
- CardHolderName? string - Full name of the cardholder.
- CardBin? int - First six digits of the card number.
- CardLastFour? int - Last four digits of the credit card or debit card.
- Email? string - Email address of the card payment method holder.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- Status? string - Possible values are: Active Canceled InActive
- InputCardNumber? string - Input field for the card number. This field doesn’t store the card number directly, but instead populates CardBin, LastFour, and DisplayCardNumber based on the value entered in InputCardNumber.
- CardHolderFirstName? string - First name of the cardholder.
- CardHolderLastName? string - Last name of the cardholder.
- CompanyName? string - Company of the cardholder.
- GatewayToken? string - Unique ID generated by the payment gateway for the card for future transactions.
- GatewayTokenDetails? string - Additional information about the gateway token.
- PaymentGatewayId? string - The payment gateway used to create a gateway token. For transactions with a saved payment method in Salesforce, this field stores the payment gateway record used in the transaction.
- ProcessingMode? string - Defines whether the card payment method is used for transactions made inside or outside the payment platform.
- MacAddress? string - MAC address of the card payment method holder.
- Phone? string - Phone number of the card payment method holder.
- IpAddress? string - IP address of the card payment method holder.
- AuditEmail? string - Email of the payment method holder.
- GatewayResultCode? string - The result of the card payment method’s interaction with the payment gateway during a transaction request.
- GatewayResultCodeDescription? string - Additional information about the gateway result code. Descriptions will vary between payment gateway providers.
- SfResultCode? string - Shows the results of the card payment method’s interaction with the payment gateway.
- GatewayDate? string - The date that the card payment method interacted with the payment gateway.
- GatewayTokenEncrypted? string - Gateway token encrypted
- IsAutoPayEnabled? boolean - Indicates whether the record is auto pay enabled (true) or not (false)
- PaymentMethodType? string - Type of the payment method
- PaymentMethodSubType? string - Type of the payment method sub
- PaymentMethodDetails? string - Payment method details
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartCheckoutSessionSObject
Represents a checkout session used in Lightning B2B Commerce checkout.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the checkout session.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- WebCartId? string - The ID of the cart that is used to create the checkout session.
- State? string - The current state of the checkout session.
- NextState? string - The next state of the checkout session.
- IsProcessing? boolean - Determines whether checkout processing is in progress (true) or not (false). Default value is false.
- BackgroundOperationId? string - The ID of the in progress background operation.
- IsArchived? boolean - Indicates whether checkout processing is archived (true) or not (false). Once a session is archived, it can’t be unarchived. Default value is false.
- OrderId? string - The ID of a created order once the checkout session has gone from cart to order.
- IsError? boolean - Indicates whether the session is in error state (true) or not (false). Default value is false.
- OrderReferenceNumber? string - Order reference number
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartDeliveryGroupChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CartId? string - ID of the associated cart
- DesiredDeliveryDate? string - Date of the desired delivery
- ShippingInstructions? string - Shipping instructions
- DeliverToFirstName? string - Name of the deliver to first
- DeliverToLastName? string - Name of the deliver to last
- DeliverToName? string - Name of the deliver to
- DeliverToStreet? string - Deliver to street
- DeliverToCity? string - Deliver to city
- DeliverToState? string - Deliver to state
- DeliverToPostalCode? string - Deliver to postal code
- DeliverToCountry? string - Deliver to country
- DeliverToLatitude? decimal - Deliver to latitude
- DeliverToLongitude? decimal - Deliver to longitude
- DeliverToGeocodeAccuracy? string - Deliver to geocode accuracy
- DeliverToAddress? record {} - Deliver to address
- IsDefault? boolean - Indicates whether this is the default record (true) or not (false)
- SelectedDeliveryMethodId? string - ID of the associated selected delivery method
- ShipToPhoneNumber? string - Ship to phone number
- CompanyName? string - Name of the company
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartDeliveryGroupMethodSObject
Represents the selected delivery method for a cart delivery group used in Lightning B2B Commerce checkout.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the delivery method.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- WebCartId? string - The ID of the WebCart associated with the cart delivery group method. Required field.
- CartDeliveryGroupId? string - The ID of the cart delivery group associated with the checkout session.
- CartCheckoutSessionId? string - The unique ID used to identify your cart checkout session.
- ShippingFee? decimal - Shipping fee associated with the delivery method. Required field.
- ExternalProvider? string - The ID of the external shipping method provider. Optional field.
- Carrier? string - Carrier
- ClassOfService? string - Class of service
- ProductId? string - ID of the associated product
- ReferenceNumber? string - Reference number
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- TotalAdjustmentAmount? decimal - Total adjustment amount for the record
- AdjustedShippingFee? decimal - Adjusted shipping fee
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartDeliveryGroupSObject
Represents shipping information for the delivery of items in an order against a store built with B2B Commerce on Lightning Experience.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of this CartDeliveryGroup record. Name can be up to 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CartId? string - The ID the WebCart that’s associated with this delivery group.
- DesiredDeliveryDate? string - The date that a buyer requests to have an order delivered.
- ShippingInstructions? string - Instructions for delivering an order.
- DeliverToFirstName? string - Name of the deliver to first
- DeliverToLastName? string - Name of the deliver to last
- DeliverToName? string - The name of the person to which to deliver a buyer order.
- DeliverToStreet? string - The street to which to deliver a buyer order.
- DeliverToCity? string - The city to which a buyer order is delivered.
- DeliverToState? string - The state to which to deliver a buyer order.
- DeliverToPostalCode? string - The postal code to which to deliver a buyer order.
- DeliverToCountry? string - The country to which a buyer order is delivered.
- DeliverToLatitude? decimal - The latitude of a buyer delivery location.
- DeliverToLongitude? decimal - The longitude of a buyer delivery location.
- DeliverToGeocodeAccuracy? string - The geocode location to which a buyer order is delivered. Possible values are: Address Block City County ExtendedZip NearAddress Neighborhood State Street Unknown Zip
- DeliverToAddress? record {} - The address to which a buyer order is delivered.
- IsDefault? boolean - Indicates whether this is the default record (true) or not (false)
- TotalProductAmount? decimal - Cart items can be of type Product or Charge. This field contains the sum of all the cart items TotalPrice for all cart items of the PRODUCT type.
- TotalChargeAmount? decimal - Cart items can be of type Product or Charge. This field contains the sum of all the cart items TotalPrice for all cart items of the CHARGE type.
- TotalAmount? decimal - Sum of all cart items TotalPrice, or TotalProductAmount plus TotalChargeAmount.
- TotalProductTaxAmount? decimal - Cart items can be of type Product or Charge. Sum of all the cart items TotalTaxAmount for all cart items of the PRODUCT type.
- TotalChargeTaxAmount? decimal - Cart items can be of type Product or Charge. This field contains the Sum of all the cart items TotalTaxAmount for all cart items of the CHARGE type.
- TotalTaxAmount? decimal - Sum of all cart items TotalTaxAmount, or TotalProductTaxAmount plus TotalChargeTaxAmount.
- GrandTotalAmount? decimal - Sum of all cart items’ TotalAmount, or CartDeliveryGroup TotalAmount plus CartDeliveryGroup TotalTaxAmount.
- TotalAdjustmentAmount? decimal - Total adjustment amount for the record
- TotalAdjustmentTaxAmount? decimal - Total tax amount on adjustments
- SelectedDeliveryMethodId? string - ID of the associated selected delivery method
- ShipToPhoneNumber? string - Ship to phone number
- CompanyName? string - Name of the company
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CartId? string - ID of the associated cart
- CartDeliveryGroupId? string - ID of the associated cart delivery group
- Product2Id? string - ID of the associated product
- Type? string - Type or category of the record
- Sku? string - Sku
- Quantity? decimal - Quantity associated with the record
- ListPrice? decimal - List price
- NetUnitPrice? decimal - Net unit price
- GrossUnitPrice? decimal - Gross unit price
- SalesPrice? decimal - Sales price
- UnitAdjustmentAmount? decimal - Unit adjustment amount
- UnitAdjustedPrice? decimal - Unit adjusted price
- TotalListPrice? decimal - Total list price
- TotalLineAmount? decimal - Total line amount for the record
- TotalLineTaxAmount? decimal - Total line tax amount
- AdjustmentAmount? decimal - Adjustment amount applied to the record
- AdjustmentTaxAmount? decimal - Adjustment tax amount
- TotalPrice? decimal - Total price for the record
- ItemizedAdjustmentAmount? decimal - Itemized adjustment amount
- ItemizedAdjustmentTaxAmount? decimal - Itemized adjustment tax amount
- DistributedAdjustmentAmount? decimal - Distributed adjustment amount
- DistributedAdjustmentTaxAmount? decimal - Distributed adjustment tax amount
- TotalPromoAdjustmentAmount? decimal - Total promotional adjustment amount
- TotalAdjustmentAmount? decimal - Total adjustment amount for the record
- TotalPriceAfterAllAdjustments? decimal - Total price after all adjustments
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartItemPriceAdjustmentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CartItemId? string - ID of the associated cart item
- WebCartAdjustmentGroupId? string - ID of the associated web cart adjustment group
- TotalAmount? decimal - Total amount for the record
- AdjustmentSource? string - Adjustment source
- Description? string - Description of the record
- AdjustmentType? string - Type of adjustment applied
- AdjustmentValue? decimal - Adjustment value
- Priority? int - Priority level of the record
- AdjustmentTargetType? string - Type of target for the adjustment
- PriceAdjustmentCauseId? string - ID of the associated price adjustment cause
- AdjustmentBasisReferenceId? string - ID of the adjustment basis reference
- AdjustmentAmountScope? string - Adjustment amount scope
- CartId? string - ID of the associated cart
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartItemPriceAdjustmentSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CartItemId? string - ID of the associated cart item
- WebCartAdjustmentGroupId? string - ID of the associated web cart adjustment group
- TotalAmount? decimal - Total amount for the record
- TotalTax? decimal - Total tax
- AdjustmentSource? string - Adjustment source
- Description? string - Description of the record
- AdjustmentType? string - Type of adjustment applied
- AdjustmentValue? decimal - Adjustment value
- Priority? int - Priority level of the record
- AdjustmentTargetType? string - Type of target for the adjustment
- PriceAdjustmentCauseId? string - ID of the associated price adjustment cause
- AdjustmentBasisReferenceId? string - ID of the adjustment basis reference
- AdjustmentAmountScope? string - Adjustment amount scope
- CartId? string - ID of the associated cart
- TotalNetAmount? decimal - Total net amount
- TotalGrossAmount? decimal - Total gross amount
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartItemSObject
Represents an item in a WebCart that’s active in a store built with B2B Commerce on Lightning Experience. Cart item can be of type Product or Charge.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of this CartItem record. Name can be up to 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CartId? string - The ID of the WebCart that’s associated with a cart item.
- CartDeliveryGroupId? string - The ID of the CartDeliveryGroup that’s associated with a cart item.
- Product2Id? string - The ID of a product type cart item. Cart items can be of type PRODUCT or CHARGE.
- Type? string - The CartItem type. Possible values are: Product Charge
- Sku? string - The Shelf-Keeping Unit ID of a cart item.
- Quantity? decimal - The number of a given cart item in a cart.
- ListPrice? decimal - The original price of the cart item. Typically shown with a line through it. List price is shown only when it’s higher than the negotiated price. If the list price is the same or lower, it isn’t shown to the buyer.
- NetUnitPrice? decimal - Net unit price
- GrossUnitPrice? decimal - Gross unit price
- SalesPrice? decimal - The discounted price of a cart item.
- UnitAdjustmentAmount? decimal - Discount or surcharge to apply to a quantity unit. This amount is added to the SalesPrice to get the UnitAdjustedPrice. This field is available in API version 50.0 and later.
- UnitAdjustedPrice? decimal - Price per quantity unit after a discount or surcharge is applied. This field is available in API version 50.0 and later.
- TotalListPrice? decimal - Total amount for this cart item, based on ListPrice. We provide this value for comparison. It's not the price that the buyer is paying
- TotalLineAmount? decimal - Total amount for this cart item, based on sales price and quantity.
- TotalLineTaxAmount? decimal - Total tax amount for TotalLineAmount.
- AdjustmentAmount? decimal - Non-itemized adjustments for this cart item
- AdjustmentTaxAmount? decimal - The tax that’s calculated on the AdjustmentAmount.
- TotalPrice? decimal - Total amount for this cart item, including adjustments but excluding taxes.
- TotalPriceTaxAmount? decimal - Total price tax amount
- ItemizedAdjustmentAmount? decimal - Itemized adjustment amount
- ItemizedAdjustmentTaxAmount? decimal - Itemized adjustment tax amount
- DistributedAdjustmentAmount? decimal - Distributed adjustment amount
- DistributedAdjustmentTaxAmount? decimal - Distributed adjustment tax amount
- TotalPromoAdjustmentAmount? decimal - Total promotional adjustment amount
- TotalPromoAdjustmentTaxAmount? decimal - Total promo adjustment tax amount
- TotalAdjustmentAmount? decimal - Total adjustment amount for the record
- TotalPriceAfterAllAdjustments? decimal - Total price after all adjustments
- TotalTaxAmount? decimal - Total tax amount for this cart item. This value includes taxes for both TotalLineAmount and AdjustmentAmount.
- TotalAmount? decimal - The total cost of this cart item, including taxes and adjustments.
- TotalLineNetAmount? decimal - Total line net amount
- TotalLineGrossAmount? decimal - Total line gross amount
- NetAdjustmentAmount? decimal - Net adjustment amount
- GrossAdjustmentAmount? decimal - Gross adjustment amount
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartRelatedItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ParentCartItemId? string - ID of the associated parent cart item
- ChildCartItemId? string - ID of the associated child cart item
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartRelatedItemSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentCartItemId? string - ID of the associated parent cart item
- ChildCartItemId? string - ID of the associated child cart item
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartTaxChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CartItemId? string - ID of the associated cart item
- CartId? string - ID of the associated cart
- CartItemPriceAdjustmentId? string - ID of the associated cart item price adjustment
- TaxType? string - Type of the tax
- TaxCalculationDate? string - Date of the tax calculation
- Amount? decimal - Amount associated with the record
- TaxRate? decimal - Tax rate
- Description? string - Description of the record
- AdjustmentTargetType? string - Type of target for the adjustment
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartTaxSObject
Represents taxes for a line item in a WebCart that’s active in a store built with B2B Commerce on Lightning Experience.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of this CartTax record. Name can be up to 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CartItemId? string - The ID of a cart item being taxed.
- CartId? string - The ID of the WebCart being taxed.
- CartItemPriceAdjustmentId? string - ID of the associated cart item price adjustment
- TaxType? string - The type of tax for this line of tax. Possible values are: Actual Estimated
- TaxCalculationDate? string - The date this tax was calculated.
- Amount? decimal - Calculated tax amount.
- TaxRate? decimal - The applied tax rate for this line of tax.
- Description? string - A description of the tax. Enter up to 2000 characters.
- AdjustmentTargetType? string - Type of target for the adjustment
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartValidationOutputChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CartId? string - ID of the associated cart
- RelatedEntityId? string - ID of the associated related entity
- BackgroundOperationId? string - ID of the associated background operation
- Type? string - Type or category of the record
- Level? string - Level
- Message? string - Message content of the record
- IsDismissed? boolean - Indicates whether the record is dismissed (true) or not (false)
- RelatedEntityPrefix? string - Related entity prefix
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CartValidationOutputSObject
Associate errors to cart entities, such as cart line items, delivery groups, and the like, in a store built with B2B Commerce on Lightning Experience. An example error is “Out of stock.”
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of this CartValidationOutput record. Name can be up to 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CartId? string - ID of the related WebCart.
- RelatedEntityId? string - Foreign key to WebCart, CartItem, and CartDeliveryGroup.
- BackgroundOperationId? string - ID of the background operation that ran the validation.
- Type? string - The CartValidationOutput type. Possible values are: 0 (Inventory) 1 (Taxes) 2 (Pricing) 3 (Shipping) 4 (Entitlement) 5 (System Error) 6 (Other)
- Level? string - Describes the type of output resulting from the validation process. Possible values are: 0 (Info) 1 (Error) 2 (Warning)
- Message? string - Defines the message to show in the log when validation is complete. Message can be up to 255 characters.
- IsDismissed? boolean - Indicates whether the validation process is finished. Default value is false.
- RelatedEntityPrefix? string - Three-character prefix for the related entity.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CaseNumber? string - Number of the case
- ContactId? string - ID of the associated contact
- AccountId? string - ID of the associated account
- AssetId? string - ID of the associated asset
- SourceId? string - ID of the associated source
- ParentId? string - ID of the parent record
- SuppliedName? string - Name of the supplied
- SuppliedEmail? string - Supplied email
- SuppliedPhone? string - Supplied phone
- SuppliedCompany? string - Supplied company
- Type? string - Type or category of the record
- Status? string - Current status of the record
- Reason? string - Reason for the record
- Origin? string - Origin of the record
- Subject? string - Subject line of the record
- Priority? string - Priority level of the record
- Description? string - Description of the record
- IsClosed? boolean - Indicates whether the record is closed (true) or not (false)
- ClosedDate? string - Date when the record was closed
- IsEscalated? boolean - Indicates whether the record has been escalated (true) or not (false)
- OwnerId? string - ID of the user who owns the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- EngineeringReqNumber__c? string - Engineering req number c
- SLAViolation__c? string - SLA violation c
- Product__c? string - Product c
- PotentialLiability__c? string - Potential liability c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseCommentSObject
Represents a comment that provides additional information about the associated Case.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - Required. ID of the parent Case of the CaseComment.
- IsPublished? boolean - Indicates whether the CaseComment is visible to customers in the Self-Service portal (true) or not (false). Label is Published. This is the only CaseComment field that can be updated via the API.
- CommentBody? string - Text of the CaseComment. The maximum size of the comment body is 4,000 bytes. Label is Body.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseContactRoleSObject
Represents the role that a given Contact plays on a Case.
Fields
- Id? string - Unique identifier for the record
- CasesId? string - ID of the cases associated with this contact.
- ContactId? string - Required. ID of the contact.
- Role? string - Name of the role played by the contact on this case, such as Technical Contact, Business Contact, Decision Maker, and so on. Must be unique—there can't be multiple records in which the CaseId, ContactId , and Role values are identical. Different contacts can play the same role on the same case. A contact can play different roles on the same case.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseHistory2ChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CaseId? string - ID of the associated case
- OwnerId? string - ID of the user who owns the record
- Status? string - Current status of the record
- PreviousUpdate? string - Previous update
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseHistory2SObject
Fields
- Id? string - Unique identifier for the record
- CaseId? string - ID of the associated case
- OwnerId? string - ID of the user who owns the record
- Status? string - Current status of the record
- PreviousUpdate? string - Previous update
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseHistorySObject
Represents historical information about changes that have been made to the associated Case.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- CaseId? string - ID of the Case associated with this record.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the case field that was modified, or a special value to indicate some other modification to the case. The possible values, in addition to the case field names, are: ownerAssignment—The owner of the case was changed. ownerAccepted—A user took ownership of a case from a queue. ownerEscalated—The owner of the case was changed due to case escalation. external—A user made the case visible to customers in the Customer Self-Service Portal.
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the modified case field. Maximum of 255 characters.
- NewValue? string - New value of the modified case field. Maximum of 255 characters.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseMilestoneSObject
Represents a milestone (required step in a customer support process) on a Case.
Fields
- Id? string - Unique identifier for the record
- CaseId? string - ID of the case.
- MilestoneId? string - ID of the associated milestone
- StartDate? string - The date and time the milestone started on the case.
- TargetDate? string - The date and time the milestone must be completed.
- CompletionDate? string - The date and time the milestone was completed.
- MilestoneTypeId? string - The ID of the milestone on the case.
- IsCompleted? boolean - Indicates whether the milestone is completed (true) or not (false).
- IsViolated? boolean - Indicates whether the milestone is violated (true) or not (false).
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- TargetResponseInMins? int - The time to complete the milestone in minutes.
- TargetResponseInHrs? decimal - The time to complete the milestone in hours.
- TargetResponseInDays? decimal - The time to complete the milestone in days.
- TimeRemainingInMins? string - Time remaining to reach the milestone target. The format is minutes and seconds.
- TimeRemainingInHrs? string - Time remaining to reach the milestone target, measured in hours.
- TimeRemainingInDays? decimal - Time remaining to reach the milestone target, measured in days.
- ElapsedTimeInMins? int - The time required to complete a milestone in minutes.
- ElapsedTimeInHrs? decimal - The time required to complete a milestone in hours.
- ElapsedTimeInDays? decimal - The time required to complete a milestone in days.
- TimeSinceTargetInMins? string - The time elapsed since the milestone target. The format is minutes and seconds.
- TimeSinceTargetInHrs? string - The time elapsed since the milestone target, measured in hours.
- TimeSinceTargetInDays? decimal - The time elapsed since the milestone target, measured in days.
- BusinessHoursId? string - ID of the BusinessHours associated with the CaseMilestone.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseRelatedIssueChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CaseId? string - ID of the associated case
- RelatedIssueId? string - ID of the associated related issue
- RelatedEntityType? string - Type of the related entity
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseRelatedIssueFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseRelatedIssueHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CaseRelatedIssueId? string - ID of the associated case related issue
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseRelatedIssueSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CaseId? string - ID of the associated case
- RelatedIssueId? string - ID of the associated related issue
- RelatedEntityType? string - Type of the related entity
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseShareSObject
Represents a sharing entry on a Case.
Fields
- Id? string - Unique identifier for the record
- CaseId? string - ID of the Case associated with this sharing entry. This field can't be updated.
- UserOrGroupId? string - ID of the User or Group that has been given access to the Case. This field can't be updated.
- CaseAccessLevel? string - Level of access that the User or Group has to the Case. The possible values are: Read Edit All This value is not valid for creating or deleting records. This field must be set to an access level that is higher than the organization’s default access level for cases.
- RowCause? string - Reason that this sharing entry exists. You can only write to this field when its value is either omitted or set to Manual (default). You can create a value for this field in API versions 32.0 and later with the correct organization-wide sharing settings.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseSObject
Represents a case, which is a customer issue or problem.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- MasterRecordId? string - If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null.
- CaseNumber? string - Assigned automatically when each case is inserted. It can't be set directly, and it can't be modified after the case is created.
- ContactId? string - ID of the associated contact.
- AccountId? string - ID of the account associated with this case.
- AssetId? string - ID of the associated asset
- SourceId? string - The ID of the social post source.
- ParentId? string - The ID of the parent case in the hierarchy. The label is Parent Case.
- SuppliedName? string - The name that was entered when the case was created. Label is Name.
- SuppliedEmail? string - The email address that was entered when the case was created. Label is Email. If your organization has an active auto-response rule, SuppliedEmail is required when creating a case via the API. Auto-response rules use the email in the contact specified by ContactId. If no email address is in the contact record, the email specified here is used.
- SuppliedPhone? string - The phone number that was entered when the case was created. Label is Phone.
- SuppliedCompany? string - The company name that was entered when the case was created. Label is Company.
- Type? string - The type of case, such as Feature Request or Question.
- Status? string - The status of the case, such as New, Closed, or Escalated. This field directly controls the IsClosed flag. Each predefined Status value implies an IsClosed flag value. For more information, see CaseStatus.
- Reason? string - The reason why the case was created, such as Instructions not clear, or User didn’t attend training.
- Origin? string - The source of the case, such as Email, Phone, or Web. Label is Case Origin.
- Subject? string - The subject of the case. Limit: 255 characters.
- Priority? string - The importance or urgency of the case, such as High, Medium, or Low.
- Description? string - A text description of the case. Limit: 32 KB.
- IsClosed? boolean - Indicates whether the case is closed (true) or open (false). This field is controlled by the Status field; it can't be set directly. Label is Closed.
- ClosedDate? string - The date and time when the case was closed.
- IsEscalated? boolean - Indicates whether the case has been escalated (true) or not. A case's escalated state does not affect how you can use a case, or whether you can query, delete, or update it. You can set this flag via the API. Label is Escalated.
- OwnerId? string - ID of the contact who owns the case.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ContactPhone? string - Telephone number for the contact. Label is Contact Phone. This field is available in API version 38.0 and later.
- ContactMobile? string - Mobile telephone number for the contact. Label is Contact Mobile. This field is available in API version 38.0 and later.
- ContactEmail? string - Email address for the contact. The Case.ContactEmail field displays the Email field on the contact that is referenced by Case.ContactId. Label is Contact Email. This field is available in API version 38.0 and later.
- ContactFax? string - Fax number for the contact. Label is Contact Fax. This field is available in API version 38.0 and later.
- Comments? string - Used to insert a new CaseComment. Email textarea has a length of 4000 chars.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- EngineeringReqNumber__c? string - Engineering req number c
- SLAViolation__c? string - SLA violation c
- Product__c? string - Product c
- PotentialLiability__c? string - Potential liability c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseSolutionSObject
Represents the association between a Case and a Solution.
Fields
- Id? string - Unique identifier for the record
- CaseId? string - Required. ID of the Case associated with the Solution.
- SolutionId? string - Required. ID of the Solution associated with the case.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseStatusSObject
Represents the status of a Case, such as New, On Hold, or In Process.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - Master label for this case status value. This display value is the internal label that does not get translated.
- ApiName? string - Uniquely identifies a picklist value so it can be retrieved without using an id or master label.
- SortOrder? int - Number used to sort this value in the case status picklist. These numbers are not guaranteed to be sequential, as some previous case status values might have been deleted.
- IsDefault? boolean - Indicates whether this is the default case status value (true) or not (false) in the picklist.
- IsClosed? boolean - Indicates whether this case status value represents a closed Case (true) or not (false). Multiple case status values can represent a closed Case.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseTeamMemberSObject
Represents a case team member, who works with a team of other users to help resolve a case.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - The ID of the case with which the case team member is associated.
- MemberId? string - The ID of the user or contact who is a member on a case team.
- TeamTemplateMemberId? string - The ID of the team member included in a predefined case team.
- TeamRoleId? string - The ID of the case team role with which the case team member is associated.
- TeamTemplateId? string - The ID of the predefined team with which the case team member is associated.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseTeamRoleSObject
Represents a case team role. Every case team member has a role on a case, such as “Customer Contact” or “Case Manager.”
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the case team role.
- AccessLevel? string - A value that represents the type of access granted to the target Group for cases. The possible values are: None Read Edit
- PreferencesVisibleInCSP? boolean - Indicates whether or not the case team role is visible to Customer Portal users.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseTeamTemplateMemberSObject
Represents a member on a predefined case team, which is a group of users that helps resolve cases.
Fields
- Id? string - Unique identifier for the record
- TeamTemplateId? string - The ID of the predefined case team's template.
- MemberId? string - The ID of the user or contact who is a team member on a predefined case team.
- TeamRoleId? string - The ID of the predefined case team member's case team role.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseTeamTemplateRecordSObject
The CaseTeamTemplateRecord object is a linking object between the Case and CaseTeamTemplate objects. To assign a predefined case team to a case (customer inquiry), create a CaseTeamTemplateRecord record and point the ParentId to the case and the TeamTemplateId to the predefined case team.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - The ID of the case with which the case team template record is associated.
- TeamTemplateId? string - The ID of the predefined case team with which the case team template record is associated.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CaseTeamTemplateSObject
Represents a predefined case team, which is a group of users that helps resolve a case.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the predefined case team.
- Description? string - A text description of the predefined case team.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CategoryDataSObject
Represents a logical grouping of Solution records.
Fields
- Id? string - Unique identifier for the record
- CategoryNodeId? string - ID of the CategoryNode associated with the solution.
- RelatedSobjectId? string - ID of the solution related to the category.
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CategoryNodeSObject
Represents a tree of Solution categories.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent of this node, if any.
- MasterLabel? string - Label for the category node.
- SortOrder? int - Indicates the sort order of child CategoryNode objects.
- SortStyle? string - Indicates whether the sort order is alphabetical or custom.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- ChangeRequestNumber? string - Change request number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Subject? string - Subject line of the record
- Description? string - Description of the record
- Status? string - Current status of the record
- Priority? string - Priority level of the record
- Impact? string - Impact of the record
- RiskLevel? string - Risk level
- Category? string - Category of the record
- ChangeType? string - Type of the change
- ReviewerId? string - ID of the associated reviewer
- FinalReviewNotes? string - Final review notes
- FinalReviewDateTime? string - Date and time of the final review
- BusinessReason? string - Business reason
- BusinessJustification? string - Business justification
- RiskImpactAnalysis? string - Risk impact analysis
- RemediationPlan? string - Remediation plan
- EstimatedStartTime? string - Estimated start time
- EstimatedEndTime? string - Estimated end time
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ChangeRequestId? string - ID of the associated change request
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedIssueChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ChangeRequestId? string - ID of the associated change request
- RelatedIssueId? string - ID of the associated related issue
- RelatedEntityType? string - Type of the related entity
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedIssueFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedIssueHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ChangeRequestRelatedIssueId? string - ID of the associated change request related issue
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedIssueSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ChangeRequestId? string - ID of the associated change request
- RelatedIssueId? string - ID of the associated related issue
- RelatedEntityType? string - Type of the related entity
- RelationshipType? string - Type of relationship
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ChangeRequestId? string - ID of the associated change request
- AssetId? string - ID of the associated asset
- RelationshipType? string - Type of relationship
- ImpactLevel? string - Impact level of the record
- Comment? string - Comment on the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedItemFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedItemHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ChangeRequestRelatedItemId? string - ID of the associated change request related item
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestRelatedItemSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ChangeRequestId? string - ID of the associated change request
- AssetId? string - ID of the associated asset
- RelationshipType? string - Type of relationship
- ImpactLevel? string - Impact level of the record
- Comment? string - Comment on the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChangeRequestSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ChangeRequestNumber? string - Change request number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- Subject? string - Subject line of the record
- Description? string - Description of the record
- StatusCode? string - Status code of the record
- Status? string - Current status of the record
- Priority? string - Priority level of the record
- Impact? string - Impact of the record
- RiskLevel? string - Risk level
- Category? string - Category of the record
- ChangeType? string - Type of the change
- ReviewerId? string - ID of the associated reviewer
- FinalReviewNotes? string - Final review notes
- FinalReviewDateTime? string - Date and time of the final review
- BusinessReason? string - Business reason
- BusinessJustification? string - Business justification
- RiskImpactAnalysis? string - Risk impact analysis
- RemediationPlan? string - Remediation plan
- EstimatedStartTime? string - Estimated start time
- EstimatedEndTime? string - Estimated end time
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChatterActivitySObject
ChatterActivity represents the number of posts and comments made by a user and the number of comments and likes on posts and comments received by the same user.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the object type to which the ChatterActivity is related. In API version 52.0, the ParentId must be a UserId or SelfServiceUser ID.
- PostCount? int - The number of FeedItems made by the ParentId.
- CommentCount? int - The number of FeedComments made by the ParentId.
- CommentReceivedCount? int - The number of FeedComments received by the ParentId.
- LikeReceivedCount? int - The number of FeedLikes received by the ParentId.
- InfluenceRawRank? int - Number indicating the ParentId’s Chatter influence rank, which is calculated based on the ParentId’s ChatterActivity statistics, relative to the other users in the organization. This field is available in API version 26.0 and later.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChatterExtensionConfigSObject
Configuration for the Chatter extension for Experience Cloud sites.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ChatterExtensionId? string - The ID of the ChatterExtension.
- CanCreate? boolean - Determines whether the ChatterExtension can create an instance that appears by rendering.
- CanRead? boolean - Determines whether the ChatterExtension can be viewed.
- Position? int - The position of the ChatterExtension icon in the Chatter publisher.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ChatterExtensionSObject
Represents a Rich Publisher App that’s integrated with the Chatter publisher.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The name of the developer who is responsible for the app.
- Language? string - The language used for this instance of the ChatterExtension. This field requires a value.
- MasterLabel? string - The master label for the ChatterExtension object. This field requires a value.
- NamespacePrefix? string - The prefix to use for the extension’s namespace.
- IsProtected? boolean - An auto-generated value. It currently has no impact.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExtensionName? string - The name of your extension. This field requires a value.
- Type? string - Describes the type of the extension. Currently, the only value supported is Lightning. Included to allow for other possible types in the future.
- IconId? string - The icon to show in the Chatter publisher. Use an existing file asset ID from your org. This field requires a value.
- Description? string - The description of your custom Rich Publisher App. This field requires a value.
- CompositionComponentEnumOrId? string - The ID of the composition component for the Rich Publisher App. This field requires a value.
- RenderComponentEnumOrId? string - The rendering component of the Rich Publisher App that you provide. It’s comprised of the lightning:availableForChatterExtensionRenderer interface. This field requires a value.
- HoverText? string - The text to show when a user mouses over your extension’s icon. Mouse-over text is required for Lightning type extensions.
- HeaderText? string - The text to show in the header of your app composer. Header text is required for Lightning type extensions.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ClientBrowserSObject
Represents a cookie added to the browser upon login, and also includes information about the browser application where the cookie was inserted.
Fields
- Id? string - Unique identifier for the record
- UsersId? string - The ID of the user associated with this item.
- FullUserAgent? string - Detailed information about the client (browser). For example, Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1
- ProxyInfo? string - The browser’s current proxy information.
- LastUpdate? string - Represents the last time the cookie was changed.
- CreatedDate? string - Date and time when the record was created
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ClientHttp1Settings
Provides settings related to HTTP/1.x protocol.
Fields
- keepAlive KeepAlive(default http:KEEPALIVE_AUTO) - Specifies whether to reuse a connection for multiple requests
- chunking Chunking(default http:CHUNKING_AUTO) - The chunking behaviour of the request
- proxy? ProxyConfig - Proxy server related options
salesforce.types: CollaborationGroupFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CollaborationGroupMemberRequestSObject
Represents a request to join a private Chatter group.
Fields
- Id? string - Unique identifier for the record
- CollaborationGroupId? string - ID of the private Chatter group.
- RequesterId? string - ID of the user requesting to join the group; must be the ID of the context user.
- ResponseMessage? string - Optional message to be included in the notification email when Status is Declined.
- Status? string - The status of the request. Available values are: Accepted Declined Pending
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CollaborationGroupMemberSObject
Represents a member of a Chatter group.
Fields
- Id? string - Unique identifier for the record
- CollaborationGroupId? string - ID of the associated CollaborationGroup.
- MemberId? string - ID of the group member.
- CollaborationRole? string - The role of a group member. Group owners and managers can change roles for members of their groups. The valid values are: Standard—Indicates that a user is a group member. Members can post and comment in the group. Admin—Indicates that a user is a group manager. Managers can post and comment, change member roles, edit group settings, add and remove members, delete posts and comments, and edit the group information field. To change the group owner, use the OwnerId field on the CollaborationGroup object.
- NotificationFrequency? string - Required. The frequency at which Salesforce sends Chatter group email digests to this member. Can only be set by the member or users with the “Modify All Data” permission. The valid values are: D—Daily W—Weekly N—Never P—On every post The default value is specified by the member in their Chatter email settings. In communities, the Email on every post option is disabled once more than 10,000 members choose this setting for the group. All members who had this option selected are automatically switched to Daily digests.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastFeedAccessDate? string - Date and time when a group member last accessed the group’s feed. The value is only updated when a member explicitly consumes the group’s feed, not when the member sees group posts in other feeds, like the profile feed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CollaborationGroupRecordSObject
Represents the records associated with Chatter groups.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CollaborationGroupId? string - Required. ID of the Chatter group.
- RecordId? string - Required. The ID of the record associated with the Chatter group.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CollaborationGroupSObject
Represents a Chatter group.
Fields
- Id? string - Unique identifier for the record
- Name? string - Name of the group. Group names must be unique across public and private groups. Unlisted groups don’t require unique names.
- MemberCount? int - The number of members in the group.
- OwnerId? string - ID of the owner of the group. Only the current group owner or people with the Modify All Data permission can update the OwnerId.
- CollaborationType? string - The type of Chatter group. Available values are: Public—Anyone can see and post updates. Anyone can join a public group. Private—Only members can see the group feed and post updates. Non-members can only see the group name and a few other details in list views, search, and on the group page. The group's owner or managers must add members who request to join the group. Unlisted—Only members and users with the Manage Unlisted Groups permission can see the group and post updates. Other users can’t access the group or see it in lists, search, and feeds.
- Description? string - Description of the group.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FullPhotoUrl? string - The URL for the group's profile photo. The URL is updated every time a photo is uploaded and reflects the most recent photo. If a newer photo has been uploaded, the URL returned for an older photo is not guaranteed to return a photo. Query this field for the URL of the most recent photo. This field is available in API version 20.0 and later.
- MediumPhotoUrl? string - The URL for the larger, cropped photo size.
- SmallPhotoUrl? string - The URL for a thumbnail of the group's profile photo. The URL is updated every time a photo is uploaded and reflects the most recent photo. If a newer photo has been uploaded, the URL returned for an older photo is not guaranteed to return a photo. Query this field for the URL of the most recent photo. This field is available in API version 20.0 and later.
- LastFeedModifiedDate? string - The date of the last post or comment on the group.
- InformationTitle? string - The title of the Information section. For private groups, only visible to members and users with Modify All Data or View All Data permissions.
- InformationBody? string - The text of the Information section. For private groups, only visible to members and users with Modify All Data or View All Data permissions.
- HasPrivateFieldsAccess? boolean - If set to true, indicates that a user can see the InformationBody and InformationTitle fields in a private group. This field is set to true for members of a private group and users with Modify All Data or View All Data permissions.
- CanHaveGuests? boolean - If set to true, indicates that a group allows customers. Chatter customers are people outside your company's email domains. Customers can see only the groups they're invited to. They can interact only with members of those groups. Customers can’t see any Salesforce information. This field is available starting in API version 23.0, but groups that allow customers are accessible from earlier API versions. However, when accessed from earlier API versions, groups that allow customers aren't distinguishable from private groups. We strongly recommend that you upgrade to the latest API version. If you must use an earlier version, name groups that allow customers to indicate that they include customers.
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- IsArchived? boolean - Indicates whether the group is archived (true) or not (false). This field is available in API version 28.0 and later.
- IsAutoArchiveDisabled? boolean - Indicates whether automatic archiving is disabled for the group (true) or not (false). This field is available in API version 29.0 and later.
- AnnouncementId? string - Contains the ID of the Announcement last associated with the group. This field is available in API version 30.0 and later.
- GroupEmail? string - The email address for posting to the group. For private groups, only visible to members and users with Modify All Data or View All Data permissions. This field is available in API version 29.0 and later.
- BannerPhotoUrl? string - The URL for the group's banner photo. The URL is updated every time a photo is uploaded and reflects the most recent photo. If a newer photo has been uploaded, the URL returned for an older photo is not guaranteed to return a photo. Query this field for the URL of the most recent photo. This field is available in API version 36.0 and later.
- IsBroadcast? boolean - Indicates whether the group is a broadcast group (true) or not (false). This field is available in API version 36.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CollaborationInvitationSObject
Represents an invitation to join Chatter, either directly or through a group.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - Used when the email address on the invitation is different than the one entered when the invitee accepts the invitation.
- SharedEntityId? string - ID of the user or group associated with this invitation. If the invitation is to join Chatter, the SharedEntityId is the ID of the User that created the invitation. The invitee will auto-follow the inviter. If the invitation is to join a group within Chatter, the SharedEntityId is the ID of the Chatter CollaborationGroup. SM: Need to link to API topic that defines guests when it's available.To invite a customer, set SharedEntityId to the ID of the private CollaborationGroup with Allow Customers turned on.
- InviterId? string - The person that initiated the invitation.
- InvitedUserEmail? string - The email address for the user invited to join Chatter. Label is Invited Email.
- InvitedUserEmailNormalized? string - A normalized version of the InvitedUserEmail entered. Label is Invited Email (Normalized).
- Status? string - The status of the invitation. Possible values are: Sent Accepted Canceled
- OptionalMessage? string - An optional message from the person sending the invitation to the person receiving it.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ColorDefinitionSObject
Represents the color-related metadata for a custom tab.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - A unique virtual Salesforce ID for the color.
- TabDefinitionId? string - The TabDefinition ID.
- Color? string - The color described in web color RGB format—for example, “00FF00”.
- Theme? string - The icon’s theme.
- Context? string - The color context, which determines whether the color is the main color (or primary) for the tab.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CombinedAttachmentSObject
This read-only object contains all notes, attachments, Google Docs, documents uploaded to libraries in Salesforce CRM Content, and files added to Chatter that are associated with a record.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ParentId? string - The ID of the parent object.
- RecordType? string - The parent object type.
- Title? string - Title of the attached file.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- FileType? string - Type of document, determined by the file extension.
- ContentSize? int - Size of the document in bytes.
- FileExtension? string - File extension of the document. This field is available in API version 31.0 and later.
- ContentUrl? string - URL for links and Google Docs. This field is set only for links and Google Docs, and is one of the fields that determine the FileType. This field is available in API version 31.0 and later.
- ExternalDataSourceName? string - Name of the external data source in which the document is stored. This field is set only for external documents that are connected to Salesforce. This field is available in API version 32.0 and later.
- ExternalDataSourceType? string - Type of external data source in which the document is stored. This field is set only for external documents that are connected to Salesforce. This field is available in API version 35.0 and later.
- SharingOption? string - Controls whether or not sharing is frozen for a file. Only administrators and file owners with Collaborator access to the file can modify this field. Default is Allowed, which means that new shares are allowed. When set to Restricted, new shares are prevented without affecting existing shares. This field is available in API versions 35.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionChannelTypeFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionChannelTypeHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CommSubscriptionChannelTypeId? string - ID of the associated comm subscription channel type
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionChannelTypeShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionChannelTypeSObject
Represents the engagement channel through which you can reach a customer for a communication subscription.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID account owner associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the communication subscription channel type record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- CommunicationSubscriptionId? string - ID of the associated communication subscription record.
- EngagementChannelTypeId? string - ID of the associated engagement channel type record.
- DataUsePurposeId? string - ID of the associated data use purpose
- MessagingChannelId? string - ID of the associated messaging channel
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionConsentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ConsentGiverId? string - ID of the associated consent giver
- ContactPointId? string - ID of the associated contact point
- EffectiveFromDate? string - Date of the effective from
- ConsentCapturedDateTime? string - Date and time of the consent captured
- ConsentCapturedSource? string - Consent captured source
- CommSubscriptionChannelTypeId? string - ID of the associated comm subscription channel type
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- PrivacyConsentStatus? string - Status of the privacy consent
- DataUsePurposeId? string - ID of the associated data use purpose
- EngagementChannelTypeId? string - ID of the associated engagement channel type
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionConsentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionConsentHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CommSubscriptionConsentId? string - ID of the associated comm subscription consent
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionConsentShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionConsentSObject
Represents a customer’s consent to a communication subscription.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account owner associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the communication subscription consent record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ConsentGiverId? string - ID of the person who gave consent to the communication subscription on behalf of the contact point. If the contact point gave consent, don't use ConsentGiverId.
- ContactPointId? string - ID of the contact point, such as an Individual or person account, associated with the communication subscription consent.
- EffectiveFromDate? string - Required. Date when consent starts.
- ConsentCapturedDateTime? string - Required. Date when the customer’s consent was captured.
- ConsentCapturedSource? string - Required. Source through which consent was captured. For example, user@example.com or www.example.com.
- CommSubscriptionChannelTypeId? string - ID of the associated communication subscription channel type record.
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- PrivacyConsentStatus? string - Status of the privacy consent
- DataUsePurposeId? string - ID of the associated data use purpose
- EngagementChannelTypeId? string - ID of the associated engagement channel type
- PartyId? string - ID of the associated party
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CommSubscriptionId? string - ID of the associated comm subscription
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionSObject
Represents a customer’s subscription preferences for a specific communication.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account owner associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the communication subscription record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionTimingFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionTimingHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CommSubscriptionTimingId? string - ID of the associated comm subscription timing
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommSubscriptionTimingSObject
Represents a customer's timing preferences for receiving a communication subscription.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the communication subscription timing record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- CommSubscriptionConsentId? string - Required. ID of the associated communication subscription consent record.
- Unit? string - The unit of time that works with the Offset field to determine the communication timing.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CommunitySObject
Fields
- Id? string - Unique identifier for the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Name? string - Name of the record
- Description? string - Description of the record
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- IsPublished? boolean - Indicates whether the record is published (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConcurLongRunApexErrEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- RequestId? string - ID of the associated request
- RequestUri? string - Request uri
- Quiddity? string - Quiddity
- LimitValue? int - Limit value
- CurrentValue? int - Current value
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConferenceNumberSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExternalEventId? string - ID of the associated external event
- Label? string - Display label for the record
- Number? string - Number
- AccessCode? string - Access code
- Vendor? string - Vendor
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConnectedApplicationSObject
Represents a connected app and its details; all fields are read-only.
Fields
- Id? string - Unique identifier for the record
- Name? string - The unique name for this object.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OptionsAllowAdminApprovedUsersOnly? boolean - Indicates whether access is limited to users granted approval to use the connected app by an administrator. Manage profiles for the app by editing each profile’s Access list.
- OptionsRefreshTokenValidityMetric? boolean - Specifies whether the refresh token validity is based on duration or inactivity. If true, the token validity is measured based on the last use of the token; otherwise, it is based on the token duration.
- OptionsHasSessionLevelPolicy? boolean - Specifies whether the connected app requires a High Assurance level session.
- OptionsIsInternal? boolean - Options is internal
- OptionsFullContentPushNotifications? boolean - Options full content push notifications
- OptionsCodeCredentialGuestEnabled? boolean - Options code credential guest enabled
- OptionsAppIssueJwtTokenEnabled? boolean - Options app issue jwt token enabled
- OptionsTokenExchangeManageBitEnabled? boolean - Options token exchange manage bit enabled
- MobileSessionTimeout? string - Length of time after which the system logs out inactive mobile users.
- PinLength? string - For mobile apps, this field is the PIN length requirement for users of the connected app. Valid values are 4, 5, 6, 7, or 8.
- StartUrl? string - If the app is not accessed from a mobile device, users are directed to this URL after they’ve authenticated.
- MobileStartUrl? string - Users are directed to this URL after they’ve authenticated when the app is accessed from a mobile device.
- RefreshTokenValidityPeriod? int - The duration of an authorization token until it expires in hours, months, or days as set in the connected app management page.
- UvidTimeout? string - Uvid timeout
- NamedUserUvidTimeout? string - Named user uvid timeout
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint.
Fields
- auth OAuth2PasswordGrantConfig|BearerTokenConfig|OAuth2RefreshTokenGrantConfig - Configurations related to client authentication
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings? ClientHttp1Settings - Configurations related to HTTP/1.x protocol
- http2Settings? ClientHttp2Settings - Configurations related to HTTP/2 protocol
- timeout decimal(default 60) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache? CacheConfig - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- responseLimits? ResponseLimitConfigs - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
salesforce.types: ConsumptionRateHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ConsumptionRateId? string - ID of the associated consumption rate
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConsumptionRateSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ConsumptionScheduleId? string - ID of the associated consumption schedule
- Description? string - Description of the record
- ProcessingOrder? int - Processing order
- PricingMethod? string - Pricing method
- LowerBound? int - Lower bound
- UpperBound? int - Upper bound
- Price? decimal - Price of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConsumptionScheduleFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConsumptionScheduleHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ConsumptionScheduleId? string - ID of the associated consumption schedule
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConsumptionScheduleShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConsumptionScheduleSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- Description? string - Description of the record
- BillingTerm? int - Billing term
- BillingTermUnit? string - Billing term unit
- Type? string - Type or category of the record
- UnitOfMeasure? string - Unit of measure
- RatingMethod? string - Rating method
- MatchingAttribute? string - Matching attribute
- NumberOfRates? int - Number of rates
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- AccountId? string - ID of the associated account
- LastName? string - Last name of the individual
- FirstName? string - First name of the individual
- Salutation? string - Salutation for the individual
- Name? string - Name of the record
- OtherStreet? string - Other street address
- OtherCity? string - Other city
- OtherState? string - Other state or province
- OtherPostalCode? string - Other postal code
- OtherCountry? string - Other country
- OtherLatitude? decimal - Latitude coordinate of the other address
- OtherLongitude? decimal - Longitude coordinate of the other address
- OtherGeocodeAccuracy? string - Accuracy level of the geocode for the other address
- OtherAddress? record {} - Compound other address field
- MailingStreet? string - Mailing street address
- MailingCity? string - Mailing city
- MailingState? string - Mailing state or province
- MailingPostalCode? string - Mailing postal code
- MailingCountry? string - Mailing country
- MailingLatitude? decimal - Latitude coordinate of the mailing address
- MailingLongitude? decimal - Longitude coordinate of the mailing address
- MailingGeocodeAccuracy? string - Accuracy level of the geocode for the mailing address
- MailingAddress? record {} - Compound mailing address field
- Phone? string - Phone number
- Fax? string - Fax number
- MobilePhone? string - Mobile phone number
- HomePhone? string - Home phone number
- OtherPhone? string - Other phone number
- AssistantPhone? string - Assistant's phone number
- ReportsToId? string - ID of the person this individual reports to
- Email? string - Email address
- Title? string - Title of the feed item
- Department? string - Department of the individual
- AssistantName? string - Name of the assistant
- LeadSource? string - Source of the lead
- Birthdate? string - Birthdate of the individual
- Description? string - Description of the record
- OwnerId? string - ID of the user who owns the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- LastCURequestDate? string - Date of the last cu request
- LastCUUpdateDate? string - Date of the last cu update
- EmailBouncedReason? string - Email bounced reason
- EmailBouncedDate? string - Date of the email bounced
- Jigsaw? string - Data.com key
- JigsawContactId? string - ID of the associated jigsaw contact
- CleanStatus? string - Status of the clean
- IndividualId? string - ID of the associated individual
- Level__c? string - Level c
- Languages__c? string - Languages c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactCleanInfoSObject
Stores the metadata Data.com Clean uses to determine a contact record’s clean status. Helps you automate the cleaning or related processing of contact records. ContactCleanInfo includes a number of bit vector fields.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Field label is Contact Clean Info Name. The name of the contact. Maximum size is 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ContactId? string - The unique, system-generated ID assigned when the contact record was created.
- LastMatchedDate? string - The date the contact record was last matched and linked to a Data.com record.
- LastStatusChangedDate? string - The date on which the record’s Clean Status field value was last changed.
- LastStatusChangedById? string - The ID of who or what last changed the record’s Clean Status field value: a Salesforce user or a Clean job.
- IsInactive? boolean - Indicates whether the contact has been reported to Data.com as Inactive (true) or not (false).
- FirstName? string - The contact’s first name.
- LastName? string - The contact’s last name.
- Email? string - The email address for the contact.
- Phone? string - The phone number for the contact.
- Street? string - Details for the billing address of the contact.
- City? string - Details for the billing address of the contact.
- State? string - Details for the billing address of the contact.
- PostalCode? string - Details for the billing address of the contact.
- Country? string - Details for the billing address of the contact.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of a billing address. Data not currently provided.
- Longitude? decimal - Used with Latitude to specify the precise geolocation of a billing address. Data not currently provided.
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - The compound form of the address. Read-only. See Address Compound Fields for details on compound address fields.
- Title? string - The contact’s title.
- ContactStatusDataDotCom? string - The status of the contact per Data.com. Values are: Contact is Active per Data.com, Phone is Wrong per Data.com , Email is Wrong per Data.com, Phone and Email are Wrong per Data.com, Contact Not at Company per Data.com, Contact is Inactive per Data.com, Company this contact belongs to is out of business per Data.com, Company this contact belongs to never existed per Data.com or Email address is invalid per Data.com.
- IsReviewedName? boolean - Indicates whether the contact’s Name field value is in a Reviewed state (true) or not (false).
- IsReviewedEmail? boolean - Indicates whether the contact’s Email field value is in a Reviewed state (true) or not (false).
- IsReviewedPhone? boolean - Indicates whether the contact’s Phone field value is in a Reviewed state (true) or not (false).
- IsReviewedAddress? boolean - Indicates whether the contact’s Address field value is in a Reviewed state (true) or not (false).
- IsReviewedTitle? boolean - Indicates whether the contact’s Title field value is in a Reviewed state (true) or not (false).
- IsDifferentFirstName? boolean - Indicates whether the contact’s First Name field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentLastName? boolean - Indicates whether the contact’s Last Name field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentEmail? boolean - Indicates whether the contact’s Email field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentPhone? boolean - Indicates whether the contact’s Phone field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentStreet? boolean - Indicates whether the contact’s Street field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCity? boolean - Indicates whether the contact’s City field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentState? boolean - Indicates whether the contact’s State field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentPostalCode? boolean - Indicates whether the contact’s Postal Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCountry? boolean - Indicates whether the contact’s Country field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentTitle? boolean - Indicates whether the contact’s Title field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentStateCode? boolean - Indicates whether the contact’s State Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCountryCode? boolean - Indicates whether the contact’s Country Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- CleanedByJob? boolean - Indicates whether the contact record was cleaned by a Data.com Clean job (true) or not (false).
- CleanedByUser? boolean - Indicates whether the contact record was cleaned by a Salesforce user (true) or not (false).
- IsFlaggedWrongName? boolean - Indicates whether the contact’s Name field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongEmail? boolean - Indicates whether the contact’s Email field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongPhone? boolean - Indicates whether the contact’s Phone field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongAddress? boolean - Indicates whether the contact’s Address field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongTitle? boolean - Indicates whether the contact’s Title field value is flagged as wrong to Data.com (true) or not (false).
- DataDotComId? string - ID of the associated data dot com
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContactId? string - ID of the associated contact
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointAddressChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ParentId? string - ID of the parent record
- ActiveFromDate? string - Date of the active from
- ActiveToDate? string - Date of the active to
- BestTimeToContactEndTime? record {} - Best time to contact end time
- BestTimeToContactStartTime? record {} - Best time to contact start time
- BestTimeToContactTimezone? string - Best time to contact timezone
- IsPrimary? boolean - Indicates whether this is the primary record (true) or not (false)
- ContactPointPhoneId? string - ID of the associated contact point phone
- AddressType? string - Type of the address
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- PostalCode? string - Postal code of the address
- Country? string - Country of the address
- Latitude? decimal - Latitude coordinate of the address
- Longitude? decimal - Longitude coordinate of the address
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - Compound address field
- IsDefault? boolean - Indicates whether this is the default record (true) or not (false)
- PreferenceRank? int - Preference rank of the record
- UsageType? string - Type of usage
- IsThirdPartyAddress? boolean - Indicates whether the record is third party address (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointAddressHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContactPointAddressId? string - ID of the associated contact point address
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointAddressShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointAddressSObject
Represents a contact’s billing or shipping address, which is associated with an individual or person account.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account’s owner associated with this contact.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the contact.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last referenced a record related to this record.
- ParentId? string - The ID of the contact’s parent record. Only an individual or account can be a contact’s parent.
- ActiveFromDate? string - The date when the contact’s address became active.
- ActiveToDate? string - The date when the contact’s address is no longer active.
- BestTimeToContactEndTime? record {} - The latest time to contact the individual.
- BestTimeToContactStartTime? record {} - The earliest time to contact the individual.
- BestTimeToContactTimezone? string - The timezone applied to the best time to contact the individual.
- IsPrimary? boolean - Indicates whether a contact’s address is their primary address (true) or not (false). The default value is false.
- ContactPointPhoneId? string - Represents the primary phone number associated with this address.
- AddressType? string - Indicates the type of address.
- Street? string - The address street.
- City? string - The address city.
- State? string - The address state.
- PostalCode? string - The address postal code.
- Country? string - The address country.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of the address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- Longitude? decimal - Used with Latitude to specify the precise geolocation of the address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places.
- GeocodeAccuracy? string - The level of accuracy of a location’s geographical coordinates compared with its physical address. A geocoding service typically provides this value based on the address’s latitude and longitude coordinates.
- Address? record {} - The full address.
- IsDefault? boolean - Indicates whether a contact’s address is the preferred method of communication (true) or not (false). The default value is false.
- PreferenceRank? int - Preference rank of the record
- UsageType? string - Specify the usage type of this address. For instance, whether it’s a work address or a home address.
- IsThirdPartyAddress? boolean - Indicates whether the record is third party address (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointConsentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ContactPointId? string - ID of the associated contact point
- DataUsePurposeId? string - ID of the associated data use purpose
- PrivacyConsentStatus? string - Status of the privacy consent
- EffectiveFrom? string - Effective from
- EffectiveTo? string - Effective to
- CaptureDate? string - Date of the capture
- CaptureContactPointType? string - Type of the capture contact point
- CaptureSource? string - Capture source
- DoubleConsentCaptureDate? string - Date of the double consent capture
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointConsentHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContactPointConsentId? string - ID of the associated contact point consent
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointConsentShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointConsentSObject
Represents a customer's consent to be contacted via a specific contact point, such as an email address or phone number.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the account owner associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the contact point type consent record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ContactPointId? string - ID of the contact point record through which the customer is consenting to be contacted.
- DataUsePurposeId? string - ID of the data use purpose record that you want to associate this consent with.
- PrivacyConsentStatus? string - Required. Identifies whether the individual or person account associated with this record agrees to this form of contact.
- EffectiveFrom? string - Date when consents starts.
- EffectiveTo? string - Date when consent ends.
- CaptureDate? string - Required. Date when consent was captured.
- CaptureContactPointType? string - Required. Indicates how you captured consent.
- CaptureSource? string - Required. Indicates how you captured consent. For example, a website or online form.
- DoubleConsentCaptureDate? string - Date when double opt-in was captured.
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- PartyId? string - ID of the associated party
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointEmailChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ParentId? string - ID of the parent record
- ActiveFromDate? string - Date of the active from
- ActiveToDate? string - Date of the active to
- BestTimeToContactEndTime? record {} - Best time to contact end time
- BestTimeToContactStartTime? record {} - Best time to contact start time
- BestTimeToContactTimezone? string - Best time to contact timezone
- IsPrimary? boolean - Indicates whether this is the primary record (true) or not (false)
- EmailAddress? string - Email address
- EmailMailBox? string - Email mail box
- EmailDomain? string - Email domain
- EmailLatestBounceDateTime? string - Date and time of the email latest bounce
- EmailLatestBounceReasonText? string - Email latest bounce reason text
- PreferenceRank? int - Preference rank of the record
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointEmailHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContactPointEmailId? string - ID of the associated contact point email
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointEmailShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointEmailSObject
Represents a contact’s email, which is associated with an individual or person account.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account’s owner associated with this contact.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The email of the contact.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ParentId? string - The ID of the contact’s parent. Only an individual or account can be a contact’s parent.
- ActiveFromDate? string - The date when the contact’s email became active.
- ActiveToDate? string - The date when the contact’s email is no longer active.
- BestTimeToContactEndTime? record {} - The latest time to contact the individual.
- BestTimeToContactStartTime? record {} - The earliest time to contact the individual.
- BestTimeToContactTimezone? string - The timezone applied to the best time to contact the individual.
- IsPrimary? boolean - Indicates whether a contact’s email is their primary email (true) or not (false).
- EmailAddress? string - Required. The email address of the contact.
- EmailMailBox? string - A subset of the contact’s email, which is everything before the @ sign.
- EmailDomain? string - The domain of the contact’s email, which is everything after the @ sign.
- EmailLatestBounceDateTime? string - The date and time when an email failed to reach its recipient.
- EmailLatestBounceReasonText? string - The reason why the email didn’t reach its recipient.
- PreferenceRank? int - Preference rank of the record
- UsageType? string - Specify the usage type of this email. For instance, whether it’s a work email or a temporary email.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointPhoneChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ParentId? string - ID of the parent record
- ActiveFromDate? string - Date of the active from
- ActiveToDate? string - Date of the active to
- BestTimeToContactEndTime? record {} - Best time to contact end time
- BestTimeToContactStartTime? record {} - Best time to contact start time
- BestTimeToContactTimezone? string - Best time to contact timezone
- IsPrimary? boolean - Indicates whether this is the primary record (true) or not (false)
- AreaCode? string - Area code
- TelephoneNumber? string - Telephone number
- ExtensionNumber? string - Extension number
- PhoneType? string - Type of the phone
- IsSmsCapable? boolean - Indicates whether the record is sms capable (true) or not (false)
- FormattedInternationalPhoneNumber? string - Formatted international phone number
- FormattedNationalPhoneNumber? string - Formatted national phone number
- IsFaxCapable? boolean - Indicates whether the record is fax capable (true) or not (false)
- IsPersonalPhone? boolean - Indicates whether the record is personal phone (true) or not (false)
- IsBusinessPhone? boolean - Indicates whether the record is business phone (true) or not (false)
- PreferenceRank? int - Preference rank of the record
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointPhoneHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContactPointPhoneId? string - ID of the associated contact point phone
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointPhoneShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointPhoneSObject
Represents a contact’s phone number, which is associated with an individual or person account.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account’s owner associated with this contact.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The phone number for the contact.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ParentId? string - The ID of the contact’s parent. Only an individual or account can be a contact’s parent.
- ActiveFromDate? string - The date when the contact’s phone number became active.
- ActiveToDate? string - The date when the contact’s phone number is no longer active.
- BestTimeToContactEndTime? record {} - The latest time to contact the individual.
- BestTimeToContactStartTime? record {} - The earliest time to contact the individual.
- BestTimeToContactTimezone? string - The timezone applied to the best time to contact the individual.
- IsPrimary? boolean - Indicates whether a contact’s phone number is their primary number (true) or not (false).
- AreaCode? string - The area code of the phone number’s location for the contact.
- TelephoneNumber? string - Required. The phone number for the contact.
- ExtensionNumber? string - The phone number extension for the contact.
- PhoneType? string - The type of phone number for the contact.
- IsSmsCapable? boolean - Indicates whether a contact’s phone number can receive text messages (true) or not (false).
- FormattedInternationalPhoneNumber? string - The internationally recognized format for the contact’s phone number.
- FormattedNationalPhoneNumber? string - The nationally recognized format for the contact’s phone number.
- IsFaxCapable? boolean - Indicates whether a contact’s phone number is a fax number (true) or not (false).
- IsPersonalPhone? boolean - Indicates whether a contact’s phone number is a personal number (true) or not (false).
- IsBusinessPhone? boolean - Indicates whether a contact’s phone number is a business number (true) or not (false).
- PreferenceRank? int - Specify how this phone numbers ranks in terms of preference among the contact’s other phone numbers.
- UsageType? string - Specify the usage type of this number. For instance, whether it’s a work phone or a home phone.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointTypeConsentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- PartyId? string - ID of the associated party
- ContactPointType? string - Type of the contact point
- DataUsePurposeId? string - ID of the associated data use purpose
- PrivacyConsentStatus? string - Status of the privacy consent
- EffectiveFrom? string - Effective from
- EffectiveTo? string - Effective to
- CaptureDate? string - Date of the capture
- CaptureContactPointType? string - Type of the capture contact point
- CaptureSource? string - Capture source
- DoubleConsentCaptureDate? string - Date of the double consent capture
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointTypeConsentHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContactPointTypeConsentId? string - ID of the associated contact point type consent
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointTypeConsentShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactPointTypeConsentSObject
Represents consent for a contact point type, such as email or phone.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the contact point type consent record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PartyId? string - Required. Represents the record based on the Individual object you want to associate consent with.
- ContactPointType? string - Required. Represents the contact method you want to apply consent to. Possible values are: Email MailingAddress Phone Social Web
- DataUsePurposeId? string - Represents the record for data use purpose that you want to associate this consent with.
- PrivacyConsentStatus? string - Required. Identify whether the individual associated with this record agrees to this form of contact. Possible values are: NotSeen Seen OptIn OptOut
- EffectiveFrom? string - Date when consents starts.
- EffectiveTo? string - Date when consent ends.
- CaptureDate? string - Required. Date when consent was captured.
- CaptureContactPointType? string - Required. Indicates how you captured consent. Possible values are: Email MailingAddress Phone Social Web
- CaptureSource? string - Required. Indicates how you captured consent. For example, a website or online form.
- DoubleConsentCaptureDate? string - Date when double opt-in was captured.
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactRequestShareSObject
Represents a list of access levels to a ContactRequest with an explanation of the access level.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent object, if any.
- UserOrGroupId? string - ID of the User or Group that has been given access to the ContactRequest.
- AccessLevel? string - Level of access that the User or Group has to contact requests. The possible values are: Read Edit All (This value is not valid for create() or update() calls.) This value must be set to an access level that is higher than the organization’s default access level for contact requests.
- RowCause? string - Reason that this sharing entry exists.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactRequestSObject
Represents a customer’s request for support to get back to them about an issue.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the Salesforce record that owns the request.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The contact request number.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- WhatId? string - ID of the Salesforce record the contact request is related to, such as an account, case, opportunity, or work order.
- WhoId? string - ID of the Salesforce contact record the contact request is related to, such as a contact, lead, or user.
- PreferredPhone? string - The phone number the customer provided when requesting help in the contact request flow.
- PreferredChannel? string - The channel the customer selected as their preferred method of communication in the contact request flow. For example: Phone
- Status? string - The status of the contact request. For example: Abandoned Attempted Contacted New
- RequestReason? string - The reason the customer provided when requesting help in the contact request flow. These values are customizable in Object Manager. The default values are: Account Billing Case General Order Other Product
- RequestDescription? string - The description of the customer’s issue that they provided when requesting help in the contact request flow.
- IsCallback? boolean - Indicates whether the record is callback (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactShareSObject
Represents a list of access levels to a Contact along with an explanation of the access level. For example, if you have access to a record because you own it, the ContactAccessLevel is All and RowCause is Owner.
Fields
- Id? string - Unique identifier for the record
- ContactId? string - ID of the Contact associated with this sharing entry. This field can't be updated.
- UserOrGroupId? string - ID of the User or Group that has been given access to the Contact. This field can't be updated.
- ContactAccessLevel? string - Level of access that the User or Group has to cases associated with the account Contact. The possible values are: Read Edit All This value is not valid for create or update. This field must be set to an access level that is higher than the organization’s default access level for contacts.
- RowCause? string - Reason that this sharing entry exists. You can only write to this field when its value is either omitted or set to Manual (default). There are many possible values, including: Rule—The User or Group has access via a Contact sharing rule. GuestRule—The User or Group has access via a Contact guest user sharing rule. ImplicitChild—The User or Group has access to the Contact via sharing access on the associated Account. ImplicitPerson—The User or Group has access to the business contact of a person account via a Contact sharing rule. GuestPersonImplicit—The guest user has access to the business contact of a person account via a Contact sharing rule. PortalImplicit—The Contact is associated with the portal user. LpuImplicit—The User has access to records owned by high-volume Experience Cloud site users via a share group. ARImplicit—The User, who belongs to a partner or customer account, has access to the Contact via an account relationship data sharing rule. Manual—The User or Group has access because a User with “All” access manually shared the Contact with them. Owner—The User is the owner of the Contact.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContactSObject
Represents a contact, which is a person associated with an account.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- MasterRecordId? string - If this record was deleted as the result of a merge, this field contains the ID of the record that remains. If this record was deleted for any other reason, or has not been deleted, the value is null.
- AccountId? string - ID of the account that’s the parent of this contact. We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours.
- LastName? string - Required. Last name of the contact up to 80 characters.
- FirstName? string - The contact’s first name up to 40 characters.
- Salutation? string - Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs.
- Name? string - Concatenation of FirstName, MiddleName, LastName, and Suffix up to 203 characters, including whitespaces.
- OtherStreet? string - Street for alternate address.
- OtherCity? string - Alternate address details.
- OtherState? string - Alternate address details.
- OtherPostalCode? string - Alternate address details.
- OtherCountry? string - Alternate address details.
- OtherLatitude? decimal - Used with OtherLongitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see .
- OtherLongitude? decimal - Used with OtherLatitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see .
- OtherGeocodeAccuracy? string - Accuracy level of the geocode for the other address. For details on geolocation compound fields, see .
- OtherAddress? record {} - The compound form of the other address. Read-only. For details on compound address fields, see Address Compound Fields.
- MailingStreet? string - Street address for mailing address.
- MailingCity? string - Mailing address details.
- MailingState? string - Mailing address details.
- MailingPostalCode? string - Mailing address details.
- MailingCountry? string - Mailing address details.
- MailingLatitude? decimal - Used with MailingLongitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see .
- MailingLongitude? decimal - Used with MailingLatitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see .
- MailingGeocodeAccuracy? string - Accuracy level of the geocode for the mailing address. For details on geolocation compound field, see .
- MailingAddress? record {} - The compound form of the mailing address. Read-only. For details on compound address fields, see Address Compound Fields.
- Phone? string - Telephone number for the contact. Label is Business Phone.
- Fax? string - The contact’s fax number. Label is Business Fax.
- MobilePhone? string - Contact’s mobile phone number.
- HomePhone? string - The contact’s home telephone number.
- OtherPhone? string - Telephone for alternate address.
- AssistantPhone? string - The assistant’s telephone number.
- ReportsToId? string - This field doesn’t appear if IsPersonAccount is true.
- Email? string - The contact’s email address.
- Title? string - Title of the contact, such as CEO or Vice President.
- Department? string - The contact’s department.
- AssistantName? string - The assistant’s name.
- LeadSource? string - The lead’s source.
- Birthdate? string - The contact’s birthdate. Filter criteria for report filters, list view filters, and SOQL queries ignore the year portion of the Birthdate field. For example, this SOQL query returns contacts with birthdays later in the year than today:SELECT Name, Birthdate FROM Contact WHERE Birthdate > TODAY
- Description? string - A description of the contact. Label is Contact Description up to 32 KB.
- OwnerId? string - The ID of the owner of the account associated with this contact.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastActivityDate? string - Value is the most recent of either: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record.
- LastCURequestDate? string - Date of the last cu request
- LastCUUpdateDate? string - Date of the last cu update
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- EmailBouncedReason? string - If bounce management is activated and an email sent to the contact bounces, the reason for the bounce.
- EmailBouncedDate? string - If bounce management is activated and an email sent to the contact bounces, the date and time of the bounce.
- IsEmailBounced? boolean - If bounce management is activated and an email is sent to a contact, indicates whether the email bounced (true) or not (false).
- PhotoUrl? string - Path to be combined with the URL of a Salesforce instance (Example: https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the contact. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the contact. Empty if Social Accounts and Contacts isn't enabled or if Social Accounts and Contacts is disabled for the requesting user.
- Jigsaw? string - References the company’s ID in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify this value.
- JigsawContactId? string - ID of the associated jigsaw contact
- CleanStatus? string - Indicates the record’s clean status as compared with Data.com. Values include: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus appear with different labels on the contact record. Matched appears as In Sync Acknowledged appears as Reviewed Pending appears as Not Compared
- IndividualId? string - ID of the data privacy record associated with this contact. This field is available if Data Protection and Privacy is enabled.
- IsPriorityRecord? boolean - Indicates whether the record is priority record (true) or not (false)
- Level__c? string - Level c
- Languages__c? string - Languages c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentAssetSObject
Represents a Salesforce file that has been converted to an asset file in a custom app in Lightning Experience. Use asset files for org setup and configuration. Asset files can be packaged and referenced by other components.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the asset file in the API. ContentAsset.DeveloperName: must be 40 characters or fewer must begin with a letter can contain only underscores and alphanumeric characters can’t include spaces can’t end with an underscore can’t contain 2 consecutive underscores In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.
- Language? string - The language for this document. This field defaults to the user's language unless the org is multi-language enabled. Specifies the language of the labels returned. The value must be a valid user locale (language and country), such as de_DE or en_GB. For more information on locales, see the Language field on the CategoryNodeLocalization object.
- MasterLabel? string - The master label for the asset file. This internal label doesn’t get translated.
- NamespacePrefix? string - The namespace prefix associated with this object. Each Developer Edition organization that creates a managed package has a unique namespace prefix. Limit: 15 characters. You can refer to a component in a managed package by using the namespacePrefix__componentName notation.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ContentDocumentId? string - ID of the document.
- IsVisibleByExternalUsers? boolean - Indicates whether unauthenticated users can see the asset file.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentBodySObject
Represents the body of a file in Salesforce CRM Content or Salesforce Files
Fields
- Id? string - ID of the file body.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDistributionSObject
Represents information about sharing a document externally.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- OwnerId? string - ID of the user who owns the shared document.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Name? string - Name of the content delivery.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContentVersionId? string - ID of the shared document version.
- ContentDocumentId? string - ID of the shared document.
- RelatedRecordId? string - ID of the record, such as an Account, Campaign, or Case, that the shared document is related to.
- PreferencesAllowPDFDownload? boolean - When true, the shared document can be downloaded as a PDF if the original file type is PDF or if a PDF preview has been generated.
- PreferencesAllowOriginalDownload? boolean - When true, the shared document can be downloaded as the file type that it was uploaded as. When false, download availability depends on whether a preview of the file exists. If a preview exists, the file can’t be downloaded. If a preview doesn’t exist, the file can still be downloaded. If the shared document is a link, it can’t be downloaded.
- PreferencesPasswordRequired? boolean - When true, a password, specified by Password, is required to access the shared document.
- PreferencesNotifyOnVisit? boolean - When true, the owner of the shared document is emailed the first time that someone views or downloads the shared document.
- PreferencesLinkLatestVersion? boolean - When true, users see the most recent version of a shared document. When false, users see the version of the document that’s shared, even if it isn’t the most recent version.
- PreferencesAllowViewInBrowser? boolean - When true, a preview of the shared document can be viewed in a Web browser.
- PreferencesExpires? boolean - When true, access to the shared document expires on the date that’s specified by ExpiryDate.
- PreferencesNotifyRndtnComplete? boolean - When true, the owner of the shared document is emailed when renditions of the shared document that can be previewed in a Web browser are generated.
- ExpiryDate? string - Date when the shared document becomes inaccessible.
- Password? string - A password that allows access to a shared document.
- ViewCount? int - The number of times that the shared document has been viewed.
- FirstViewDate? string - Date when the shared document is first viewed.
- LastViewDate? string - Date when the shared document was last viewed.
- DistributionPublicUrl? string - URL of the link to the shared document.
- ContentDownloadUrl? string - The link for downloading the file. This field is available in API version 40.0 and later.
- PdfDownloadUrl? string - The link for downloading the file as a PDF. This field is available in API version 40.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDistributionViewSObject
Represents information about views of a shared document.
Fields
- Id? string - Unique identifier for the record
- DistributionId? string - ID of the content delivery that the document is part of.
- ParentViewId? string - ID of this instance of accessing the shared document.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IsInternal? boolean - true if the shared document is viewed by a user in the same organization; false if viewed by an external user.
- IsDownload? boolean - true if the shared document is downloaded; false if the shared document is viewed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- IsArchived? boolean - Indicates whether the record has been archived (true) or not (false)
- ArchivedById? string - ID of the associated archived by
- ArchivedDate? string - Date of the archived
- OwnerId? string - ID of the user who owns the record
- Title? string - Title of the feed item
- PublishStatus? string - Status of the publish
- LatestPublishedVersionId? string - ID of the associated latest published version
- ParentId? string - ID of the parent record
- ContentModifiedDate? string - Date of the content modified
- ContentAssetId? string - ID of the associated content asset
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentHistorySObject
Represents the history of a document.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContentDocumentId? string - ID of the document.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - The name of the field that was changed. Possible values include: contentDocPublished—The document is published into a library. contentDocUnpublished—The document is archived or removed from a library, either directly or when the owning library is changed. contentDocRepublished—The document is removed from the archive. contentDocFeatured—The document is featured. contentDocSubscribed—The document is subscribed to. contentDocUnsubscribed—The document is no longer subscribed to.
- DataType? string - Data type of the field that was changed
- OldValue? string - The latest value of the field before it was changed.
- NewValue? string - The new value of the field that was changed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentLinkChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- LinkedEntityId? string - ID of the linked entity
- ContentDocumentId? string - ID of the associated content document
- ShareType? string - Type of sharing
- Visibility? string - Visibility level of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentLinkSObject
Represents the link between a Salesforce CRM Content document or Salesforce file and where it's shared. A file can be shared with other users, groups, records, and Salesforce CRM Content libraries.
Fields
- Id? string - Unique identifier for the record
- LinkedEntityId? string - ID of the linked object. Can include Chatter users, groups, records (any that support Chatter feed tracking including custom objects), and Salesforce CRM Content libraries.
- ContentDocumentId? string - ID of the document.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ShareType? string - Required. The permission granted to the user of the shared file in a library. This is determined by the permission the user already has in the library. This field is available in API version 25.0 and later. V Viewer permission. The user can explicitly view but not edit the shared file. C Collaborator permission. The user can explicitly view and edit the shared file. I Inferred permission. The user’s permission is determined by the related record. For shares with a library, this is defined by the permissions the user has in that library. Inferred permission on shares with libraries and file owners is available in API versions 21.0 and later. Inferred permission on shares with standard objects is available in API versions 36.0 and later.
- Visibility? string - Specifies whether this file is available to all users, internal users, or shared users. This field is available in API version 26.0 and later. Visibility can have the following values. AllUsers—The file is available to all users who have permission to see the file. InternalUsers—The file is available only to internal users who have permission to see the file. SharedUsers—The file is available to all users who can see the feed to which the file is posted. SharedUsers is used only for files shared with users, and is available only when an org has private org-wide sharing on by default. The SharedUsers value is available in API version 32.0 and later. Note the following exceptions for Visibility. AllUsers & InternalUsers values apply to files posted on standard and custom object records, but not to users, groups, or content libraries. For posts to a record feed, Visibility is set to InternalUsers for all internal users by default. External users can set Visibility only to AllUsers. On user and group posts, only internal users can set Visibility to InternalUsers. For posts to a user feed, if the organization-wide default for user sharing is set to private, Visibility is set to SharedUsers. Only internal users can update Visibility. Visibility can be updated on links to files posted on standard and custom object records, but not to users, groups, or content libraries. Visibility is updatable in API version 43.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentSObject
Represents a document that has been uploaded to a library in Salesforce CRM Content or Salesforce Files. This object is available in versions 17.0 and later for Salesforce CRM Content.
Fields
- Id? string - Unique identifier for the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- IsArchived? boolean - Indicates whether the document has been archived (true) or not (false).
- ArchivedById? string - The ID of the user who archived the document. This field is available in API version 24.0 and later.
- ArchivedDate? string - The date when the document was archived. This field is available in API version 24.0 and later.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- OwnerId? string - ID of the owner of this document.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Title? string - The title of a document.
- PublishStatus? string - Indicates if and how the document is published. Valid values are: P—The document is published to a public library and is visible to other users. Label is Public. R—The document is published to a personal library and is not visible to other users. Label is Personal Library. U—The document is not published because publishing was interrupted. Label is Upload Interrupted.
- LatestPublishedVersionId? string - ID of the latest document version (ContentVersion).
- ParentId? string - ID of the library that owns the document. Created automatically when inserting a ContentVersion via the API for the first time. This field is available in API version 24.0 and later when Salesforce CRM Content is enabled.
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- Description? string - A description of the document. This field is available in API version 31.0 and later.
- ContentSize? int - The size of the document in bytes. This field is available in API version 31.0 and later.
- FileType? string - Type of document, determined by the file extension. This field is available in API version 31.0 and later.
- FileExtension? string - File extension of the document. This field is available in API version 31.0 and later.
- SharingOption? string - Controls whether sharing is frozen for a file. Only administrators and file owners with Collaborator access to the file can modify this field. Default is Allowed, which means that new shares are allowed. When set to Restricted, new shares are prevented without affecting existing shares. This field is available in API versions 35.0 and later.
- SharingPrivacy? string - Controls sharing privacy for a file. Only administrators and file owners with Collaborator access to the file can modify this field. Default is Visible to Anyone With Record Access. When set to Private on Records, the file is private on records but can be shared selectively with others. This field is available in API versions 41.0 and later.
- ContentModifiedDate? string - Date the document was modified. ContentModifiedDate updates when, for example, the document is renamed or a new document version is uploaded. When you’re uploading the first version of a document, ContentModifiedDate can be set to the current time or anytime in the past. This field is available in API version 32.0 and later.
- ContentAssetId? string - If the ContentDocument is an asset file, this field points to the asset. For most entities, the value of this field is null. This field is available in API version 38.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentDocumentSubscriptionSObject
Represents a subscription for a user following or commenting on a file in a library.
Fields
- Id? string - Unique identifier for the record
- UserId? string - ID of the user following or commenting on the file.
- ContentDocumentId? string - ID of the file.
- IsCommentSub? boolean - Specifies whether the user made comments on the file.
- IsDocumentSub? boolean - Specifies whether the user follows the file.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentFolderItemSObject
Represents a file (ContentDocument) or folder (ContentFolder) that resides in a ContentFolder in a ContentWorkspace.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IsFolder? boolean - Indicates that the ContentFolderItem is a folder, and not a file.
- ParentContentFolderId? string - The ID of the ContentFolder that the ContentFolderItem resides in.
- Title? string - The name of the file or folder.
- FileType? string - Specifies the type of file if ContentFolderItem is a file.
- ContentSize? int - The file or folder size of the ContentFolderItem.
- FileExtension? string - Specifies the file extension if the ContentFolderItem is a file.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentFolderLinkSObject
Defines the association between a library and its root folder.
Fields
- Id? string - Unique identifier for the record
- ParentEntityId? string - Name of the entity the folder hierarchy is linked to.
- ContentFolderId? string - ID of the folder.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- EnableFolderStatus? string - Indicates the status of enabling folders for the library. Valid values are: C — Completed folder enablement S — Started folder enablement F — Failed folder enablement This field is available in API version 39.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentFolderMemberSObject
Defines the association between a file and a folder.
Fields
- Id? string - Unique identifier for the record
- ParentContentFolderId? string - ID of the folder the file is in.
- ChildRecordId? string - ID of the file.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentFolderSObject
Represents a folder in a content library for adding files.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the folder.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentContentFolderId? string - ID of the ParentFolder.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentNotificationSObject
Represents a notification for a file.
Fields
- Id? string - Unique identifier for the record
- Nature? string - Type of notification.
- UsersId? string - ID of the user who received the notification.
- CreatedDate? string - Date and time when the record was created
- EntityType? string - Type of object with the notification. One of the following. ContentDocument ContentTagName ContentVersion ContentWorkspace ContentWorkspacePermission User
- EntityIdentifierId? string - ID of the object with the notification.
- Subject? string - Subject of the notification.
- Text? string - Text of the notification.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentTagSubscriptionSObject
Represents a subscription for a user following a tag on a file.
Fields
- Id? string - Unique identifier for the record
- ContentTagNameId? string - ID of the associated content tag name
- UserId? string - ID of the user following the tag on the file.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentUserSubscriptionSObject
Represents a subscription for a user following another user.
Fields
- Id? string - Unique identifier for the record
- SubscriberUserId? string - ID of the user who follows another user.
- SubscribedToUserId? string - ID of the user who is followed by another user.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentVersionChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- ContentDocumentId? string - ID of the associated content document
- IsLatest? boolean - Indicates whether the record is latest (true) or not (false)
- ContentUrl? string - Content URL
- ContentBodyId? string - ID of the associated content body
- VersionNumber? string - Version number of the record
- Title? string - Title of the feed item
- Description? string - Description of the record
- ReasonForChange? string - Reason for change
- SharingOption? string - Sharing option
- SharingPrivacy? string - Sharing privacy
- PathOnClient? string - Path on client
- RatingCount? int - Number of rating
- ContentModifiedDate? string - Date of the content modified
- ContentModifiedById? string - ID of the associated content modified by
- PositiveRatingCount? int - Number of positive rating
- NegativeRatingCount? int - Number of negative rating
- FeaturedContentBoost? int - Featured content boost
- FeaturedContentDate? string - Date of the featured content
- OwnerId? string - ID of the user who owns the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- FileType? string - Type of the file
- PublishStatus? string - Status of the publish
- ContentSize? int - Content size
- FirstPublishLocationId? string - ID of the associated first publish location
- Origin? string - Origin of the record
- ContentLocation? string - Content location
- TextPreview? string - Text preview
- ExternalDocumentInfo1? string - External document info 1
- ExternalDocumentInfo2? string - External document info 2
- ExternalDataSourceId? string - ID of the associated external data source
- IsMajorVersion? boolean - Indicates whether the record is major version (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentVersionCommentSObject
Represents a comment on a version of a file.
Fields
- Id? string - Unique identifier for the record
- ContentDocumentId? string - ID of the file.
- ContentVersionId? string - ID of the version of the file.
- UserComment? string - ID of the user who commented on the file.
- CreatedDate? string - Date and time when the record was created
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentVersionHistorySObject
Represents the history of a specific version of a document.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContentVersionId? string - ID of the version.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - The name of the field that was changed. Possible values include: contentVersionCreated—A new version is created. contentVersionUpdated—The title, description, or any custom field on the version is changed. contentVersionDownloaded—A version is downloaded. contentVersionViewed—The version details are viewed. contentVersionRated—The version is rated. contentVersionCommented—The version receives a comment. contentVersionDataReplaced—The new version replaces the previous version, which can happen only when the new version is uploaded immediately after the previous version.
- DataType? string - Data type of the field that was changed
- OldValue? string - The latest value of the field before it was changed.
- NewValue? string - The new value of the field that was changed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentVersionRatingSObject
Represents a rating on a version of a file.
Fields
- Id? string - Unique identifier for the record
- UserId? string - ID of the user who rated the file.
- ContentVersionId? string - ID of the version of the file.
- Rating? int - Rating of the file.
- UserComment? string - Comment made by the user who rated the file.
- LastModifiedDate? string - Date and time when the record was last modified
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentVersionSObject
Represents a specific version of a document in Salesforce CRM Content or Salesforce Files.
Fields
- Id? string - Unique identifier for the record
- ContentDocumentId? string - ID of the document.
- IsLatest? boolean - Indicates whether this is the latest version of the document (true) or not (false).
- ContentUrl? string - URL for links. This is only set for links. One of the fields that determines the FileType. The character limit in API versions 33.0 and later is 1,300. The character limit in API versions 32.0 and earlier was 255.
- ContentBodyId? string - Allows inserting a file version independently of the file blob being uploaded. This field is available for query and insert only. It can only point to a ContentBody record. This field is available in API version 40.0 and later.
- VersionNumber? string - The version number. The number increments with each version of the document, for example, 1, 2, 3.
- Title? string - The title of a document.
- Description? string - Description of the content version.
- ReasonForChange? string - The reason why the document was changed. This field can only be set when inserting a new version (revising) a document.
- SharingOption? string - Controls whether sharing is frozen for a file. Only administrators and file owners with Collaborator access to the file can modify this field. Default is Allowed, which means that new shares are allowed. When set to Restricted, new shares are prevented without affecting existing shares. This field is available in API versions 35.0 and later.
- SharingPrivacy? string - Controls sharing privacy for a file. Only administrators and file owners with Collaborator access to the file can modify this field. Default is Visible to Anyone With Record Access. When set to Private on Records, the file is private on records but can be shared selectively with others. This field is available in API versions 41.0 and later.
- PathOnClient? string - The complete path of the document. One of the fields that determines the FileType.Specify a complete path including the path extension in order for the document to be visible in the Preview tab.
- RatingCount? int - Read only. Total number of positive and negative ratings.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContentModifiedDate? string - Date the document was modified. ContentModifiedDate updates when, for example, the document is renamed or a new document version is uploaded. When uploading the first version of a document, ContentModifiedDate can be set to the current time or any time in the past.
- ContentModifiedById? string - ID of the user who modified the document.
- PositiveRatingCount? int - Read only. The number of times different users have given the document a thumbs up. Rating counts for the latest version are not version-specific. If Version 1 receives 10 thumbs-up votes, and Version 2 receives 2 thumbs-up votes, the PositiveRatingCount on Version 2 is 12. However, rating counts are not retroactive for prior versions. The PositiveRatingCount on Version 1 is 10.
- NegativeRatingCount? int - Read only. The number of times different users have given the document a thumbs down. Rating counts for the latest version are not version-specific. If Version 1 receives 10 thumbs-down votes, and Version 2 receives 2 thumbs-down votes, the NegativeRatingCount on Version 2 is 12. However, rating counts are not retroactive for prior versions. The NegativeRatingCount on Version 1 is 10.
- FeaturedContentBoost? int - Read only. Designates a document as featured.
- FeaturedContentDate? string - Date the document was featured.
- OwnerId? string - ID of the owner of this document.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- TagCsv? string - Text used to apply tags to a content version via the API.
- FileType? string - Type of content determined by ContentUrl for links or PathOnClient for documents.
- PublishStatus? string - Indicates if and how the document is published. Valid values are: P—The document is published to a public library and is visible to other users. Label is Public. R—The document is published to a personal library and is not visible to other users. Label is Personal Library. U—The document is not published because publishing was interrupted. Label is Upload Interrupted.
- VersionData? record {} - The content or body of the note, which can include properly formatted HTML or plain text. When a document is uploaded or downloaded via the API, it should be base64 encoded (for upload) or decoded (for download). Any special characters within plain text in the Content field must be escaped. You can escape special characters by calling content.escapeHtml4().
- ContentSize? int - Size of the document in bytes. Always zero for links.
- FileExtension? string - File extension of the document. This field is available in API version 31.0 and later.
- FirstPublishLocationId? string - ID of the location where the version was first published. If the version is first published into a user's personal library or My Files, the field will contain the ID of the user who owns the personal library or My Files. In Lightning Experience, if the first version is published into a public library, the field will contain the ID of that library. Accepts all record IDs supported by ContentDocumentLink (anything a file can be attached to, like records and groups). Setting FirstPublishLocationId allows you to create a file and share it with an initial record/group in a single transaction, and have the option to create more links to share the file with other records or groups later. When a file is created, it’s automatically linked to the record, and PublishStatus will change to Public from Pending/Personal. This field is only set the first time a version is published via the API. FirstPublishLocationId can’t be set to another ID when a new content version is inserted.Salesforce updates the FirstPublishLocationId updates automatically when a new OwnerId is added to the ContentVersion. For example, when you publish a new version with a different OwnerId than the current OwnerId, the FirstPublishLocationId of all previous versions updates to the previous OwnerId. The new published version sets the FirstPublishLocationId to the new OwnerId.
- Origin? string - The source of the content version. Valid values are: C—Content document from the user's personal library. Label is Content. The FirstPublishLocationId must be the user's ID. If FirstPublishLocationId is left blank, it defaults to the user's ID. H—Salesforce file from the user's My Files. Label is Chatter. The FirstPublishLocationId must be the user's ID. If FirstPublishLocationId is left blank, it defaults to the user's ID. Origin can only be set to H if Chatter is enabled for your organization. This field defaults to C. Label is Content Origin.
- ContentLocation? string - Origin of the document. Valid values are: S—Document is located within Salesforce. Label is Salesforce. E—Document is located outside of Salesforce. Label is External. L—Document is located on a social network and accessed via Social Customer Service. Label is Social Customer Service.
- TextPreview? string - A preview of a document. Available in API version 35.0 and later.
- ExternalDocumentInfo1? string - Stores the URL of the file in the external content repository. The integration from the external source determines the content for this string. After the reference or copy is created, the URL of the external file is updated when you: Republish a file reference in Lightning Experience Open the document Create a file reference in the Connect REST API with reuseReference set to true. When the file is updated, the shared link is updated to the most current version.
- ExternalDocumentInfo2? string - Contains the external file ID. Salesforce determines the content for this string, which is private. The content can change without notice, depending on the external system. After the file reference is created, this field isn’t updated, even if the file path changes.
- ExternalDataSourceId? string - ID of the external document referenced in the ExternalDataSource object.
- Checksum? string - MD5 checksum for the file.
- IsMajorVersion? boolean - true if the document is a major version; false if the document is a minor version. Major versions can’t be replaced.
- IsAssetEnabled? boolean - Can be specified on insert of ContentVersion to automatically convert a ContentDocument file into a ContentAsset. This field can be SOQL queried, but it can’t be edited. This field is available in API version 38.0 and later.
- VersionDataUrl? string - Version data URL
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentWorkspaceDocSObject
Represents a link between a document and a public library in Salesforce CRM Content.
Fields
- Id? string - Unique identifier for the record
- ContentWorkspaceId? string - Read only. ID of the library.
- ContentDocumentId? string - Read only. ID of the library document.
- CreatedDate? string - Date and time when the record was created
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsOwner? boolean - Read only. Indicates whether the library owns the document and determines permissions for that document (true) or not (false). Documents can belong to more than one library, but only one library owns the document and determines its permissions.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentWorkspaceMemberSObject
Represents a member of a content library.
Fields
- Id? string - Unique identifier for the record
- ContentWorkspaceId? string - ID of the library.
- ContentWorkspacePermissionId? string - The id of the library permission or role.
- MemberId? string - ID of the library member (the member is either a user or a group).
- MemberType? string - The type of library member. Valid values are: G - Group U - User
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentWorkspacePermissionSObject
Represents a library permission.
Fields
- Id? string - Unique identifier for the record
- Name? string - Name of the library.
- Type? string - Provides the type of access a user has to a library. Valid values are: Library Administrator Author Viewer Custom
- PermissionsManageWorkspace? boolean - Permission for user to perform any action in the library. This privilege is required to edit a library’s name and description, add or remove library members, or delete a library. Manage Library is a super permission which provides all other permission options listed except Deliver Content. Creating a library requires the Manage Salesforce CRM Content app permission or Create Libraries system permission.
- PermissionsAddContent? boolean - Permission for user to publish new content to the library, upload new content versions, or restore archived (deleted) content. Content authors can also change any tags associated with their content and archive or delete their own content.
- PermissionsAddContentOBO? boolean - Permission for user to choose an author when publishing content in the library.
- PermissionsArchiveContent? boolean - Permission for user to archive and restore any content in the library.
- PermissionsDeleteContent? boolean - Permission for user to delete any content in the library. Authors can undelete their own content from the Recycle Bin.
- PermissionsFeatureContent? boolean - Permission for user to identify any content in the library as “featured.”
- PermissionsViewComments? boolean - Permission for user to view comments.
- PermissionsAddComment? boolean - Permission for user to post comments to any content in the library and view all comments in the library. Users can edit or delete their own comments.
- PermissionsModifyComments? boolean - Permission for user to edit or delete comments made to any content in the library.
- PermissionsTagContent? boolean - Permission for user to add tags when publishing content or editing content details in the library.
- PermissionsDeliverContent? boolean - Permission for user to share content outside the org via a content delivery or public link.
- PermissionsChatterSharing? boolean - Permission for user to make content from this library accessible outside of the library, sharing with a record or in Chatter. From a record or from Chatter, select a file from the library and attach it to a record or a post.
- PermissionsOrganizeFileAndFolder? boolean - Permission for user to create, rename, and delete folders in libraries.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastModifiedById? string - ID of the user who last modified the record
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentWorkspaceSObject
Represents a content library.
Fields
- Id? string - Unique identifier for the record
- Name? string - Name of the library.
- Description? string - Text description of the content library.
- TagModel? string - The type of tagging assigned to a library. Valid values are: U — Unrestricted. No restrictions on tagging. Users can enter any tag when publishing or editing content. G — Guided. Users can enter any tag when publishing or editing content, but they are also offered a list of suggested tags. R — Restricted. Users must choose from a list of suggested tags.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastModifiedDate? string - Date and time when the record was last modified
- DefaultRecordTypeId? string - ID of the default content type for the library. Content types are the containers for custom fields in Salesforce CRM Content.
- IsRestrictContentTypes? boolean - Read only. Indicates whether content types have been restricted (true) or not (false).
- IsRestrictLinkedContentTypes? boolean - Read only. Indicates whether linked content types have been restricted (true) or not (false).
- WorkspaceType? string - Differentiates between different types of libraries. Valid values are: R — Regular library B — Org asset library This field is available in API version 39.0 and later.
- ShouldAddCreatorMembership? boolean - Automatically create a library membership for the user creating the library. Please note this field is not meant for query and always returns false in query. This field is available in API version 40.0 and later.
- LastWorkspaceActivityDate? string - Date of the last workspace activity
- RootContentFolderId? string - ID of root folder of the library. This field is available in API version 39.0 and later.
- NamespacePrefix? string - The unique name of the library in the API. Allows a link to the library to be packaged when an asset file is added to a package. Limit: 15 characters. This field is available in API version 39.0 and later.
- DeveloperName? string - The unique name of the library in the API. Allows a link to the library to be packaged when an asset file is added to a package. Although libraries are not a packageable entity, references to libraries with a developer name will be included in the package when asset files are packaged. These links can then be restored in the target org.
- WorkspaceImageId? string - ID of a library image. Image files can be assigned to libraries for branding and easy identification. Library image is visible to all users, even if they are not library members. This field is available in API version 43.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContentWorkspaceSubscriptionSObject
Represents a subscription for a user following a library.
Fields
- Id? string - Unique identifier for the record
- UserId? string - ID of the user following the library.
- ContentWorkspaceId? string - ID of the library.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContextParamMapSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ContextEntityId? string - ID of the associated context entity
- MapKey? string - Map key
- MapValue? string - Map value
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- AccountId? string - ID of the associated account
- Pricebook2Id? string - ID of the associated price book
- OwnerExpirationNotice? string - Owner expiration notice
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- BillingStreet? string - Billing street address
- BillingCity? string - Billing city
- BillingState? string - Billing state or province
- BillingPostalCode? string - Billing postal code
- BillingCountry? string - Billing country
- BillingLatitude? decimal - Latitude coordinate of the billing address
- BillingLongitude? decimal - Longitude coordinate of the billing address
- BillingGeocodeAccuracy? string - Accuracy level of the geocode for the billing address
- BillingAddress? record {} - Compound billing address field
- ContractTerm? int - Contract term
- OwnerId? string - ID of the user who owns the record
- Status? string - Current status of the record
- CompanySignedId? string - ID of the associated company signed
- CompanySignedDate? string - Date of the company signed
- CustomerSignedId? string - ID of the associated customer signed
- CustomerSignedTitle? string - Customer signed title
- CustomerSignedDate? string - Date of the customer signed
- SpecialTerms? string - Special terms
- ActivatedById? string - ID of the associated activated by
- ActivatedDate? string - Date when the record was activated
- StatusCode? string - Status code of the record
- Description? string - Description of the record
- ContractNumber? string - Number of the contract
- LastApprovedDate? string - Date of the last approved
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractContactRoleSObject
Represents the role that a given Contact plays on a Contract.
Fields
- Id? string - Unique identifier for the record
- ContractId? string - Required. ID of the Contract.
- ContactId? string - ID of the Contact associated with this Contract.
- Role? string - Name of the role played by the Contact on this Contract, such as Decision Maker, Approver, Buyer, and so on. Must be unique—there can't be multiple records in which the ContractId, ContactId, and Role values are identical. Different contacts can play the same role on the same contract. A contact can play different roles on the same contract.
- IsPrimary? boolean - Specifies whether this Contact plays the primary role on this Contract (true) or not (false). Note that each contract has only one primary contact role. Default is false. Labels is Primary.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContractId? string - ID of the associated contract
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractLineItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- LineItemNumber? string - Line item number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ServiceContractId? string - ID of the associated service contract
- AssetId? string - ID of the associated asset
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- Description? string - Description of the record
- PricebookEntryId? string - ID of the associated price book entry
- Quantity? decimal - Quantity associated with the record
- UnitPrice? decimal - Unit price for the record
- Discount? decimal - Discount percentage
- ParentContractLineItemId? string - ID of the associated parent contract line item
- RootContractLineItemId? string - ID of the associated root contract line item
- LocationId? string - ID of the associated location
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractLineItemFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractLineItemHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ContractLineItemId? string - ID of the associated contract line item
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractLineItemSObject
Represents a product covered by a service contract (customer support agreement).
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LineItemNumber? string - Automatically-generated number that identifies the contract line item.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- ServiceContractId? string - Required. ID of the ServiceContract associated with the contract line item. Must be a valid asset ID.
- Product2Id? string - The product related to the contract line item.
- AssetId? string - Required. ID of the Asset associated with the contract line item. Must be a valid asset ID.
- StartDate? string - The first day the contract line item is in effect.
- EndDate? string - The last day the contract line item is in effect.
- Description? string - Description of the contract line item.
- PricebookEntryId? string - Required. ID of the associated PricebookEntry.
- Quantity? decimal - Number of units of the contract line item (product) included in the associated service contract.
- UnitPrice? decimal - The unit price for the contract line item. In the user interface, this field’s value is calculated by dividing the total price of the contract line item by the quantity listed for that line item. Label is Sales Price.
- Discount? decimal - The discount for the product as a percentage.
- ListPrice? decimal - Corresponds to the UnitPrice on the PricebookEntry that is associated with this line item, which can be in the standard pricebook or a custom pricebook. A client application can use this information to show whether the unit price (or sales price) of the line item differs from the pricebook entry list price.
- Subtotal? decimal - Contract line item's sales price multiplied by the Quantity.
- TotalPrice? decimal - This field is available only for backward compatibility. It represents the total price of the ContractLineItem
- Status? string - Status of the contract line item.
- ParentContractLineItemId? string - The line item’s parent line item, if it has one.
- RootContractLineItemId? string - (Read only) The top-level line item in a contract line item hierarchy. Depending on where a line item lies in the hierarchy, its root could be the same as its parent.
- LocationId? string - The location associated with the contract line item.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractSObject
Represents a contract (a business agreement) associated with an Account.
Fields
- Id? string - Unique identifier for the record
- AccountId? string - Required. ID of the Account associated with this contract. Is this field supposed to be uneditable (we know it’s supposed to be undeletable) if contract is active?
- Pricebook2Id? string - ID of the pricebook, if any, associated with this contract.
- OwnerExpirationNotice? string - Number of days ahead of the contract end date (15, 30, 45, 60, 90, and 120). Used to notify the owner in advance that the contract is ending.
- StartDate? string - Start date for this contract. Label is Contract Start Date.
- EndDate? string - Read-only. Calculated end date of the contract. This value is calculated by adding the ContractTerm to the StartDate.
- BillingStreet? string - Street address for the billing address.
- BillingCity? string - Details for the billing address. Maximum size is 40 characters.
- BillingState? string - Details for the billing address. Maximum size is 80 characters.
- BillingPostalCode? string - Details for the billing address of this account. Maximum size is 20 characters.
- BillingCountry? string - Details for the billing address of this account. Maximum size is 80 characters.
- BillingLatitude? decimal - Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- BillingLongitude? decimal - Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places.
- BillingGeocodeAccuracy? string - The accuracy of the geocode for the billing address.
- BillingAddress? record {} - The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields.
- ContractTerm? int - Number of months that the contract is valid.
- OwnerId? string - ID of the user who owns the contract.
- Status? string - The picklist of values that indicate order status. Each value is within one of two status categories defined in StatusCode. For example, the status picklist may contain: Ready to Ship, Shipped, Received as values within the Activated StatusCode.
- CompanySignedId? string - ID of the User who signed the contract.
- CompanySignedDate? string - Date on which the contract was signed by your organization.
- CustomerSignedId? string - ID of the Contact who signed this contract.
- CustomerSignedTitle? string - Title of the customer who signed the contract.
- CustomerSignedDate? string - Date on which the customer signed the contract.
- SpecialTerms? string - Special terms that apply to the contract.
- ActivatedById? string - ID of the User who activated this contract.
- ActivatedDate? string - Date and time when this contract was activated.
- StatusCode? string - The status category for the contract. A contract can be Draft, InApproval, or Activated. Label is Status Category.
- Description? string - Description of the contract.
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- ContractNumber? string - Number of the contract.
- LastApprovedDate? string - Last date the contract was approved.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastActivityDate? string - Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ContractStatusSObject
Represents the status of a Contract, such as Draft, InApproval, Activated, Terminated, or Expired.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - Master label for this contract status value. This display value is the internal label that does not get translated.
- ApiName? string - Uniquely identifies a picklist value so it can be retrieved without using an id or master label.
- SortOrder? int - Number used to sort this value in the contract status picklist. These numbers are not guaranteed to be sequential, as some previous contract status values might have been deleted.
- IsDefault? boolean - Indicates whether this is the default contract status value (true) or not (false) in the picklist.
- StatusCode? string - Code indicating the status of a contract. One of the following values: Draft InApproval Activated Two other values (Terminated and Expired) are defined but are not available for use via the API.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConversationEntrySObject
Represents a message or an event in the chat history between an agent and a messaging user.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ConversationEntityId? string - ID of the associated conversation entity
- ConversationId? string - The MessagingSession ID this entry belongs to.
- Seq? int - The sequence position of this entry in the chat history.
- EntryTime? string - The timestamp of this entry in the chat history.
- EntryTimeMilliSecs? int - The milliseconds value for the time when an entry was received by the server. Note that the related EntryTime field does not provide millisecond accuracy. This field is available in API version 51.0 and later.
- EntryType? string - The type of entry in the chat history. Can be a message (text) or an event. The possible values include: Text AdminOptedIn AdminOptedOut BotEscalated ChatbotClosedIdleSession ChatbotEndedChatByAction—Conversation ended by automated action ChatbotEndedTransferNotConfigured—Conversation ended because transfer fail is not configured ChatbotEstablished ChatbotNotEstablished EndUserOptedIn EndUserOptedOut
- ActorType? string - The author of this entry in the chat history. The valid values include: Agent Bot EndUser Supervisor System
- ActorId? string - The ID of the author. The possible values can be null or any ID in the following domain set: BotDefinition LiveChatVisitor MessagingEndUser User
- ActorName? string - The name of the author sending the message or event.
- Message? string - The message or event sent by the author.
- MessageStatus? string - The status of the message sent by the author. The valid values include: Delivered Error Pending Read Sent
- MessageStatusCode? string - The code associated with a message status. MessageStatusCode is only populated when a message is undeliverable
- MessageSendTime? string - Unused field reserved for future use.
- MessageDeliverTime? string - Unused field reserved for future use.
- MessageReadTime? string - Unused field reserved for future use.
- MessageIdentifier? string - Message identifier
- HasAttachments? boolean - Indicates whether a message has attachments associated with it (true) or not (false).
- EntryEndTime? string - The timestamp that this entry ended in the chat history. This field is available in API version 48.0 and later.
- ClientTimestamp? string - The timestamp sent by the client when it generated the entry. This field is available in API version 51.0 and later.
- ClientDuration? int - The length in milliseconds for the entry. This field is used with voice messages and other applicable use cases. This value may be 0 if not set by the client. This field is available in API version 51.0 and later.
- ServerReceivedTimestamp? string - The timestamp recorded when the server received the entry. This is a unique value and is used for ordering. This value can also be referred to as the “transcripted timestamp.” This field is available in API version 51.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConversationParticipantSObject
Represents an active participant in a conversation. A new ConversationParticipant record is created each time a participant joins a conversation.
Fields
- Id? string - Unique identifier for the record
- Name? string - The autogenerated name of the conversation participants.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ConversationId? string - The record ID of the conversation that this participant is part of.
- AppType? string - The type of app used by the participant, such as Facebook, SMS, or Voice. The nillable property is available in API version 51.0 and later.
- JoinedTime? string - The date and time that a participant joined a conversation.
- ParticipantEntityId? string - The ID of the record connected to this participant record, such as a Messaging End User or User record.
- ParticipantKey? string - A value that uniquely identifies this participant.
- ParticipantRole? string - The role of this participant in the conversation, such as Agent, End User, or Supervisor.
- ParticipantContext? string - An identifier, such as a Facebook page, to add context about this participant.
- ParticipantDisplayName? string - Name of the participant display
- LeftTime? string - The date and time that a participant left a conversation.
- LastActiveTime? string - The date and time that a participant was last active during a conversation.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConversationSObject
Represents a conversation between an end user and an agent.
Fields
- Id? string - Unique identifier for the record
- Name? string - The autogenerated name of the conversation.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ConversationIdentifier? string - A unique identifier generated for the conversation.
- StartTime? string - The date and time that a conversation starts.
- EndTime? string - The date and time that a conversation ends.
- ConversationChannelId? string - The record ID of the channel used to initialize the conversation. This can either be a messaging channel for the Messaging product or a call center for the Service Cloud Voice product. Available in API version 50.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConversationVendorInfoSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- VendorType? string - Type of the vendor
- AwsAccountKey? string - Aws account key
- AwsRootEmail? string - Aws root email
- IsTaxCompliant? boolean - Indicates whether the record is tax compliant (true) or not (false)
- AwsTenantVersion? decimal - Aws tenant version
- AwsMpaType? string - Type of the aws mpa
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ConvMessageSendRequestSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RequestType? string - Type of the request
- RequestStatus? string - Status of the request
- CompletedDate? string - Date when the record was completed
- ShouldEnforceChannelConsent? boolean - Should enforce channel consent
- AllowExistingSessionStatus? string - Status of the allow existing session
- TotalMessageCount? int - Number of total message
- PendingMessageCount? int - Number of pending message
- PendingMessageIdentifiers? string - Pending message identifiers
- InProgressMessageCount? int - Number of in progress message
- InProgressMessageIdentifiers? string - In progress message identifiers
- SuccessMessageCount? int - Number of success message
- SuccessMessageIdentifiers? string - Success message identifiers
- FailedMessageCount? int - Number of failed message
- FailedMessageIdentifiers? string - Failed message identifiers
- FailedMessageErrorReasons? string - Failed message error reasons
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CorsWhitelistEntrySObject
Cross-Origin Resource Sharing (CORS) enables web browsers to request resources from origins other than their own. For example, using CORS, JavaScript code at https://www.example.com could request a resource from https://www.salesforce.com. To access supported Salesforce APIs, Apex REST resources, and Lightning Out from JavaScript code in a web browser, add the origin serving the code to a Salesforce CORS allowlist.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the record in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. This field is automatically generated but you can supply your own value if you create the record using the API.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - This picklist contains the following fully-supported languages: Chinese (Simplified): zh_CN Chinese (Traditional): zh_TW Danish: da Dutch: nl_NL English: en_US Finnish: fi French: fr German: de Italian: it Japanese: ja Korean: ko Norwegian: no Portuguese (Brazil): pt_BR Russian: ru Spanish: es Spanish (Mexico): es_MX Spanish (Mexico) defaults to Spanish for customer-defined translations. Swedish: sv Thai: th The Salesforce user interface is fully translated to Thai, but Help is in English.
- MasterLabel? string - Primary label for the CORS allowlist entry.
- NamespacePrefix? string - For managed packages, this field is the namespace prefix assigned to the package. For unmanaged packages, this field is blank.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- UrlPattern? string - The origin URL pattern must include the HTTPS protocol (unless you’re using your localhost) and a domain name, and can include a port. The wildcard character () is supported and must be in front of a second-level domain name. For example, https://.example.com adds all subdomains of example.com to the allowlist.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CouponCodeRedemptionShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CouponCodeRedemptionSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CouponId? string - ID of the associated coupon
- Transaction? string - Transaction
- Buyer? string - Buyer
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CouponFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CouponHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CouponId? string - ID of the associated coupon
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CouponShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CouponSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- PromotionId? string - ID of the associated promotion
- CouponCode? string - Coupon code
- Status? string - Current status of the record
- StartDateTime? string - Start date and time of the record
- EndDateTime? string - Date and time of the end
- RedemptionLimitAllBuyers? int - Redemption limit all buyers
- RedemptionLimitPerBuyer? int - Redemption limit per buyer
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CredentialStuffingEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SourceIp? string - IP address of the source that triggered the event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- AcceptLanguage? string - Accept language
- LoginType? string - Type of the login
- LoginUrl? string - Login URL
- UserAgent? string - User agent string of the client application
- Score? decimal - Score associated with the event
- Summary? string - Summary description of the event
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CredentialStuffingEventStoreFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CredentialStuffingEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- CredentialStuffingEventNumber? string - Credential stuffing event number
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SourceIp? string - IP address of the source that triggered the event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- AcceptLanguage? string - Accept language
- LoginType? string - Type of the login
- LoginUrl? string - Login URL
- Score? decimal - Score associated with the event
- Summary? string - Summary description of the event
- UserAgent? string - User agent string of the client application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreditMemoId? string - ID of the associated credit memo
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoInvApplicationFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoInvApplicationHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreditMemoInvApplicationId? string - ID of the associated credit memo inv application
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoInvApplicationSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreditMemoInvoiceNumber? string - Credit memo invoice number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- InvoiceId? string - ID of the associated invoice
- CreditMemoId? string - ID of the associated credit memo
- Amount? decimal - Amount associated with the record
- Type? string - Type or category of the record
- Description? string - Description of the record
- Date? string - Date
- AppliedDate? string - Date of the applied
- EffectiveDate? string - Date when the record becomes effective
- UnappliedDate? string - Date of the unapplied
- AssociatedLineId? string - ID of the associated associated line
- HasBeenUnapplied? string - Has been unapplied
- ImpactAmount? decimal - Impact amount for the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoLineFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoLineHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreditMemoLineId? string - ID of the associated credit memo line
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoLineSObject
Represents a partial or full application of a credit memo’s balance against an invoice or invoice line.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the credit memo line.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreditMemoId? string - ID of the parent credit memo.
- ReferenceEntityItemId? string - The order item or adjustment item that created the credit memo line.
- StartDate? string - For credit memo lines made from a time-based service, the first date of the billing for the service.
- EndDate? string - For credit memos made from a time-based service, the end date of the billing for the service.
- TaxEffectiveDate? string - The date used to calculate the credit memo line’s TaxAmount.
- Type? string - Shows the type of transaction for the invoice line.
- TaxCode? string - The code used to calculate tax rate for the invoice line.
- TaxRate? decimal - Percentage value used for calculating tax.
- Status? string - State of the credit memo line. Inherited from the invoice’s status.Confirm with anoop that this is always inherited from header
- ChargeAmount? decimal - Sum of charges made to the credit memo.
- TaxAmount? decimal - Total tax for the credit memo.
- AdjustmentAmount? decimal - Sum of adjustments made to the credit memo.
- LineAmount? decimal - Line amount
- Description? string - Description of the credit memo line.
- ReferenceEntityItemTypeCode? string - The type of object that created the credit memo line.
- ReferenceEntityItemType? string - The type of transaction that created the credit memo line.
- RelatedLineId? string - The original invoice line that was adjusted or taxed.check with anoop
- Product2Id? string - The product that was charged or ordered to create the credit memo line.
- TaxName? string - User-defined name for applied tax.
- ChargeTaxAmount? decimal - Charge tax amount
- ChargeAmountWithTax? decimal - Charge amount with tax
- AdjustmentTaxAmount? decimal - Adjustment tax amount
- AdjustmentAmountWithTax? decimal - Adjustment amount with tax
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CreditMemoSObject
Represents a document that is used to adjust or rectify errors made in an invoice. The invoice has already been processed and sent to a customer.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The user who owns a credit memo record.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DocumentNumber? string - System-generated number for organization of financial documents. Can be sequential or random.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- BillingAccountId? string - The customer account for this invoice.
- ReferenceEntityId? string - The ID of the order or order summary that created this credit memo.
- CreditMemoNumber? string - System number for the credit memo.
- TotalAmount? decimal - Sum of the credit memo’s TotalLineAmount and TotalAdjustmentAmount.
- TotalAmountWithTax? decimal - Total credit memo amount, with tax included.
- TotalChargeAmount? decimal - Sum of TotalAmount values for the credit memo’s charge lines. values for all of this credit memo’s credit memo lines.
- TotalAdjustmentAmount? decimal - Sum of TotalAmountvalues for the credit memo’s adjustment lines.
- TotalTaxAmount? decimal - Sum of TotalAmount values for the credit memo’s tax lines.
- CreditDate? string - The date that the credit memo was posted.
- Description? string - Description of the credit memo.
- Status? string - Status of the credit memo.
- BillToContactId? string - Inherited from the account’s Bill to Account.
- Balance? decimal - Amount of the credit memo available for allocation.
- TotalChargeTaxAmount? decimal - Total charge tax amount for the record
- TotalChargeAmountWithTax? decimal - Total charge amount including tax
- TotalAdjustmentTaxAmount? decimal - Total tax amount on adjustments
- TotalAdjustmentAmountWithTax? decimal - Total adjustment amount with tax
- TotalCreditAmountApplied? decimal - Total credit amount applied
- TotalCreditAmountUnapplied? decimal - Total credit amount unapplied
- NetCreditsApplied? decimal - Net credits applied
- CreationMode? string - Creation mode
- ExternalReference? string - External reference
- ExternalReferenceDataSource? string - External reference data source
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CronJobDetailSObject
Contains details about the associated scheduled job, such as the job’s name and type.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the associated scheduled job.
- JobType? string - The type of the associated scheduled job. The following are the available job types. Each job type label is listed with its value in parenthesis. Use the job type value when querying for a specific job type. 1—Data Export 3—Dashboard Refresh 4—Reporting Snapshot 6—Scheduled Flow 7—Scheduled Apex 8—Report Run 9—Batch Job A—Reporting Notification
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CronTriggerSObject
Contains schedule information for a scheduled job. CronTrigger is similar to a cron job on UNIX systems. This object is available in API version 17.0 and later.
Fields
- Id? string - Unique identifier for the record
- CronJobDetailId? string - The ID of the CronJobDetail record containing more details about this scheduled job.
- NextFireTime? string - The next date and time the job is scheduled to run. null if the job is not scheduled to run again.
- PreviousFireTime? string - The most recent date and time the job ran. null if the job has not run before current local time.
- State? string - The current state of the job. The job state is managed by the system. Possible values are: WAITING—The job is waiting for execution. ACQUIRED—The job has been picked up by the system and is about to execute. EXECUTING—The job is executing. COMPLETE—The trigger has fired and is not scheduled to fire again. ERROR—The trigger definition has an error. DELETED—The job has been deleted. PAUSED—A job can have this state during patch and major releases. After the release has finished, the job state is automatically set to WAITING or another state. BLOCKED—Execution of a second instance of the job is attempted while one instance is running. This state lasts until the first job instance is completed. PAUSED_BLOCKED—A job has this state due to a release occurring. When the release has finished and no other instance of the job is running, the job’s status is set to another state.
- StartTime? string - The date and time when the most recent iteration of the scheduled job started.
- EndTime? string - The date and time when the job either finished or will finish.
- CronExpression? string - The cron expression used to initiate the schedule.
- TimeZoneSidKey? string - Returns the timezone ID. For example, America/Los_Angeles.
- OwnerId? string - Owner of the job.
- LastModifiedById? string - ID of the user who last modified the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- TimesTriggered? int - The number of times this job has been triggered.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CspTrustedSiteSObject
Represents a CSP Trusted Site. The Lightning Component framework uses Content Security Policy (CSP) to impose restrictions on content. The main objective is to help prevent cross-site scripting (XSS) and other code injection attacks. To use third-party APIs that make requests to an external (non-Salesforce) server or to use a WebSocket connection, add a CSP Trusted Site.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The developer name of the trusted site.
- Language? string - The language for the trusted site.
- MasterLabel? string - Master label for this trusted site.
- NamespacePrefix? string - Namespace prefix for this trusted site.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EndpointUrl? string - The URL for the trusted site.
- Description? string - The description of the trusted site. Limit: 255 characters.
- IsActive? boolean - Indicates whether the trusted site is active.
- Context? string - Declares the scope of trust for the listed third-party host.
- IsApplicableToConnectSrc? boolean - Indicates if Lightning components can load URLs using script interfaces from this site.
- IsApplicableToFrameSrc? boolean - Indicates if Lightning components can load resources contained in <iframe> elements from this site.
- IsApplicableToImgSrc? boolean - Indicates if Lightning components can load images from this site.
- IsApplicableToStyleSrc? boolean - Indicates if Lightning components can load style sheets from this site.
- IsApplicableToFontSrc? boolean - Indicates if Lightning components can load fonts from this site.
- IsApplicableToMediaSrc? boolean - Indicates if Lightning components can load audio and video from this site.
- CanAccessCamera? boolean - Indicates whether the record can access camera (true) or not (false)
- CanAccessMicrophone? boolean - Indicates whether the record can access microphone (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CspViolationSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- BlockedUrl? string - Blocked URL
- ViolationContext? string - Violation context
- IsFrameSrcViolated? boolean - Indicates whether the record is frame src violated (true) or not (false)
- IsFontSrcViolated? boolean - Indicates whether the record is font src violated (true) or not (false)
- IsImageSrcViolated? boolean - Indicates whether the record is image src violated (true) or not (false)
- IsConnectSrcViolated? boolean - Indicates whether the record is connect src violated (true) or not (false)
- IsStyleSrcViolated? boolean - Indicates whether the record is style src violated (true) or not (false)
- IsMediaSrcViolated? boolean - Indicates whether the record is media src violated (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomBrandAssetSObject
Represents a branding element in a custom branding scheme. For example, a color, logo image, header image, or footer text.
Fields
- Id? string - Unique identifier for the record
- CustomBrandId? string - ID of the associated .
- AssetCategory? string - Values include: MotifZeronaryColor—The background color for the header. Label is Zeronary motif color. If this CustomBrandAsset is for a network, this is the header color for the network. If it is for an org, this is the header color when users access the Salesforce mobile app. MotifPrimaryColor—The color used for the active tab. Label is Primary motif color. Not used for the Salesforce mobile app branding. MotifSecondaryColor—The color used for the top borders of lists and tables. Label is Secondary motif color.Not used for the Salesforce mobile app branding. MotifTertiaryColor—The background color for section headers on edit and detail pages. Label is Tertiary motif color.Not used for the Salesforce mobile app branding. MotifQuaternaryColor—If this CustomBrandAsset is for a network, this is the background color for network pages. If it is for an org, this is the background color on a splash page. Label is Quaternary motif color. MotifZeronaryComplementColor—Font color used with zeronaryColor. Label is Zeronary motif colors complement color. MotifPrimaryComplementColor—Font color used with primaryColor. Label is Primary motif colors complement color.Not used for the Salesforce mobile app branding. MotifTertiaryComplementColor—Font color used with tertiaryColor. Label is Tertiary motif colors complement color.Not used for the Salesforce mobile app branding. MotifQuaternaryComplementColor—Font color used with quaternaryColor. Label is Quaternary motif colors complement color.Not used for the Salesforce mobile app branding. PageHeader—An image that appears on the header of the pages. Can be an .html, .gif, .jpg, or .png file. Label is Page Header.Not used for the Salesforce mobile app branding. PageFooter—An image that appears on the footer of the pages. Must be an .html file. Label is Page Footer.Not used for the Salesforce mobile app branding. LoginFooterText—The text that appears in the footer of the login page. Label is Footer text displayed on the login page.Not used for the Salesforce mobile app branding. LoginLogoImageId—The logo that appears on the login page for external users. In the Salesforce mobile app, this logo also appears on the Experience Cloud site splash page. Label is Logo image displayed on the login page. LargeLogoImageId—Only used for the Salesforce mobile app. The logo that appears on the splash page when you start the Salesforce mobile app. Label is Large logo image. SmallLogoImageId—Only used for the Salesforce mobile app. The logo that appears on the publisher in the Salesforce mobile app. Label is Small logo image. StaticLogoImageURL—The logo that appears on the login page for external users. Label is Static logo image url. LoginQuaternaryColor—The background color that appears on the Experience Cloud site login page for external users. Label is Login background color. LoginRightFrameUrl—The URL to the contents that appears on right side of the Experience Cloud site login page for external users. Label is Login right frame url. LogoAssetId—Navigation tile menu item images. Label is Logo asset image. LoginPrimaryColor—The background color of the login button. Label is Login primary color. LoginBackgroundImageUrl—The path to the image URL that appears as the background on the Experience Cloud site’s login page. Label is Background image url. LargeLogoAssetId—Navigational topic images. Label is Large logo asset image. MediumLogoAssetId—Featured topic images. Label is Medium logo asset image.
- TextAsset? string - Text used if the AssetCategory is LoginFooterText.
- AssetSourceId? string - ID of the document uploaded to the Documents folder if the value of AssetCategory is: PageHeader PageFooter LoginLogoImageId LargeLogoImageId SmallLogoImageId ID of the content asset if the value of the AssetCategory is: LogoAssetId LargeLogoAssetId MediumLogoAssetId
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomBrandSObject
Represents a custom branding and color scheme.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - The ID of the parent entity that this branding applies to. The parent entity can be an Experience Cloud site, organization, topic, or reputation level. The branding applies to the entity that the ParentId references. For example, if the ParentId references a network ID, the branding applies to that Experience Cloud site only, and if the ParentId references an organization ID, the branding applies to the organization that it is accessed through, and so on. Label is Branded Entity ID.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomerShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomerSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- PartyId? string - ID of the associated party
- TotalLifeTimeValue? int - Total life time value
- CustomerStatusType? string - Type of the customer status
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomHelpMenuItemSObject
Represents the items within a section of the Lightning Experience help menu that the admin added to display custom, org-specific help resources.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentId? string - The ID of the custom help section the item belongs to.
- MasterLabel? string - Required. The name of the resource. Specify up to 100 characters.
- LinkUrl? string - Required. The URL for the resource. Specify up to 1,000 characters.
- SortOrder? int - Required. The order of the item within the custom section. Valid values are 1 through 15.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomHelpMenuSectionSObject
Represents a section of the Lightning Experience help menu that the admin added to display custom, org-specific help resources.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the custom help section in the API. This name can contain only underscores and alphanumeric characters and must be unique in your organization. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. The label corresponds to section title in the user interface. Limit: 80 characters.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - Required. Language of the label. Possible values are: da (Danish) de (German) en_US (English) es (Spanish) es_MX (Spanish (Mexico)) fi (Finnish) fr (French) it (Italian) ja (Japanese) ko (Korean) nl_NL (Dutch) no (Norwegian) pt_BR (Portuguese (Brazil)) ru (Russian) sv (Swedish) th (Thai) zh_CN (Chinese (Simplified)) zh_TW (Chinese (Traditional))
- MasterLabel? string - Required. The name of the resource. Specify up to 100 characters.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomHttpHeaderSObject
Represents a custom HTTP header that provides context information from Salesforce such as region, org details, or the role of the person viewing the external object.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentId? string - ID of the entity that the custom HTTP header is related to.
- HeaderFieldName? string - Name of the header field. The name must contain at least one alphanumeric character or underscore. It can also include: ! # $ % & ' * + - . ^ _
| ~ MISSING[]
- HeaderFieldValue? string - A formula that resolves to the value for the header. The values in the formula must evaluate to a string. If the formula resolves to null and an empty string, the header isn’t sent.
- IsActive? boolean - Indicates whether the custom HTTP header is available to use.
- Description? string - A text description of the header field’s purpose.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomHttpHeaderSObject_attributes
Fields
- 'type? string - Type of the object or field
- url? string - URL associated with the record
salesforce.types: CustomNotificationTypeSObject
Stores information about custom notification types.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Specifies the API name of the notification type.
- Language? string - Specifies the language of the custom notification type. The value for this field is the language value of the org.
- MasterLabel? string - Specifies the notification type label.
- NamespacePrefix? string - Specifies the namespace of the notification type, if installed with a managed package.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CustomNotifTypeName? string - Specifies a notification type name. The notification type name is unique within your organization. Maximum number of characters: 80.
- Description? string - Specifies a general description of the notification type, which is displayed with the notification type name. Maximum number of characters: 255.
- Desktop? boolean - Indicates whether the desktop delivery channel is enabled (true) or not (false). The default is false.
- Mobile? boolean - Indicates whether the mobile delivery channels is enabled (true) or not (false). The default is false.
- IsSlack? boolean - Indicates whether the record is slack (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomPermissionDependencySObject
Represents the dependency between two custom permissions when one custom permission requires that you enable another custom permission.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CustomPermissionId? string - The ID of the custom permission that requires the permission that’s specified in RequiredCustomPermissionId.
- RequiredCustomPermissionId? string - The ID of the custom permission that must be enabled when CustomPermissionId is enabled.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: CustomPermissionSObject
Represents a permission created to control access to a custom process or app, such as sending email.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the custom permission in the API. This name can contain only underscores and alphanumeric characters and must be unique in your organization. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. The label corresponds to Name in the user interface. Limit: 80 characters.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - The language of the custom permission. Valid values are:Chinese (Simplified): zh_CN Chinese (Traditional): zh_TW Danish: da Dutch: nl_NL English: en_US Finnish: fi French: fr German: de Italian: it Japanese: ja Korean: ko Norwegian: no Portuguese (Brazil): pt_BR Russian: ru Spanish: es Spanish (Mexico): es_MX Spanish (Mexico) defaults to Spanish for customer-defined translations. Swedish: sv Thai: th The Salesforce user interface is fully translated to Thai, but Help is in English.
- MasterLabel? string - The custom permission label, which corresponds to Label in the user interface. Limit: 80 characters.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- IsProtected? boolean - Indicates whether the record is protected (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - A description of the custom permission. Limit: 255 characters.
- ConnectedAppId? string - ID of the associated connected app
- IsLicensed? boolean - When enabled (true) indicates that the appropriate Salesforce license is required before accessing the permission. This field is available in API version 50.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DandBCompanySObject
Represents a Dun & Bradstreet® company record, which is associated with an account added from Data.com.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The primary or registered name of a company. Maximum size is 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- DunsNumber? string - The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters.
- Street? string - The street address where a company is physically located. Maximum size is 255 characters.
- City? string - The city where a company is physically located. Maximum size is 40 characters.
- State? string - The state where a company is physically located. Maximum size is 20 characters.
- PostalCode? string - The postal code that corresponds to a company’s physical location. Maximum size is 20 characters.
- Country? string - The country where a company is physically located. Maximum size is 40 characters.
- GeocodeAccuracyStandard? string - Geocode accuracy standard
- Address? record {} - The compound form of the address. Read-only. See Address Compound Fields for details on compound address fields.
- Phone? string - A company’s primary telephone number.
- Fax? string - The company’s facsimile number.
- CountryAccessCode? string - The required code for international calls. Maximum size is 4 characters.
- PublicIndicator? string - Indicates whether ownership of the company is public or private. Available values include: Y—Public N—Private
- StockSymbol? string - The abbreviation used to identify publicly traded shares of a particular stock. Maximum size is 6 characters.
- StockExchange? string - The corresponding exchange for a company’s stock symbol. For example: NASDAQ or NYSE. Maximum size is 16 characters.
- SalesVolume? decimal - The total annual sales revenue in the headquarters’ local currency. Dun & Bradstreet tracks revenue data for publicly traded companies, Global Ultimates, Domestic Ultimates, and some headquarters.
- URL? string - An organization’s primary website address. Maximum size is 104 characters.
- OutOfBusiness? string - Indicates whether the company at the specified address has discontinued operations. Available values include: Y—Out of business N—Not out of business
- EmployeesTotal? decimal - The total number of employees in the company, including all subsidiary and branch locations. This data is only available on records that have a value of Headquarters/Parent in the LocationStatus field. Maximum size is 15 characters.
- FipsMsaCode? string - The Federal Information Processing Standards (FIPS) and the Metropolitan Statistical Area (MSA) codes identify the organization’s location. The MSA codes are defined by the US Office of Management and Budget. Maximum size is 5 characters.
- FipsMsaDesc? string - A brief description of an organization’s FIPS MSA code. Maximum size is 255 characters.
- TradeStyle1? string - A name, different from its legal name, that an organization may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum size is 255 characters.
- YearStarted? string - The year the company was established or the year when current ownership or management assumed control of the company. Maximum size is 4 characters.
- MailingStreet? string - The street address where a company has its mail delivered. Maximum size is 255 characters.
- MailingCity? string - The city where a company has its mail delivered. Maximum size is 40 characters.
- MailingState? string - The state where a company has its mail delivered. Maximum size is 20 characters.
- MailingPostalCode? string - The postal code that a company uses on its mailing address. Maximum size is 20 characters.
- MailingCountry? string - The country where a company has its mail delivered. Maximum size is 40 characters.
- MailingGeocodeAccuracy? string - Accuracy level of the geocode for the mailing address
- MailingAddress? record {} - The compound form of the mailing address. Read-only. See Address Compound Fields for details on compound address fields.
- Latitude? string - Used with longitude to specify a precise location, which is then used to assess the Geocode Accuracy. Maximum size is 11 characters.
- Longitude? string - Used with latitude to specify a precise location, which is then used to assess the Geocode Accuracy. Maximum size is 11 characters.
- PrimarySic? string - The four-digit Standard Industrial Classification (SIC) code is used to categorize business establishments by industry. The full list of values can be found at the Optimizer Resources page maintained by Dun & Bradstreet. Maximum size is 4 characters.
- PrimarySicDesc? string - A brief description of an organization’s line of business, based on its SIC code. Maximum size is 80 characters.
- SecondSic? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- SecondSicDesc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- ThirdSic? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- ThirdSicDesc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- FourthSic? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- FourthSicDesc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- FifthSic? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- FifthSicDesc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- SixthSic? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- SixthSicDesc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- PrimaryNaics? string - The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the US business economy. The full list of values can be found at the Optimizer Resources page maintained by Dun & Bradstreet. Maximum size is 6 characters.
- PrimaryNaicsDesc? string - A brief description of an organization’s line of business, based on its NAICS code. Maximum size is 120 characters.
- SecondNaics? string - An additional NAICS code used to further classify an organization by industry. Maximum size is 6 characters.
- SecondNaicsDesc? string - A brief description of an organization’s line of business, based on the corresponding NAICS code. Maximum size is 120 characters.
- ThirdNaics? string - An additional NAICS code used to further classify an organization by industry. Maximum size is 6 characters.
- ThirdNaicsDesc? string - A brief description of an organization’s line of business, based on the corresponding NAICS code. Maximum size is 120 characters.
- FourthNaics? string - An additional NAICS code used to further classify an organization by industry. Maximum size is 6 characters.
- FourthNaicsDesc? string - A brief description of an organization’s line of business, based on the corresponding NAICS code. Maximum size is 120 characters.
- FifthNaics? string - An additional NAICS code used to further classify an organization by industry. Maximum size is 6 characters.
- FifthNaicsDesc? string - A brief description of an organization’s line of business, based on the corresponding NAICS code. Maximum size is 120 characters.
- SixthNaics? string - An additional NAICS code used to further classify an organization by industry. Maximum size is 6 characters.
- SixthNaicsDesc? string - A brief description of an organization’s line of business, based on the corresponding NAICS code. Maximum size is 120 characters.
- OwnOrRent? string - Indicates whether a company owns or rents the building it occupies. Available values include: 0—Unknown or not applicable 1—Owns 2—Rents
- EmployeesHere? decimal - The number of employees at a specified location, such as a branch location. Maximum size is 15 characters.
- EmployeesHereReliability? string - The reliability of the EmployeesHere figure. Available values include: 0—Actual number 1—Low 2—Estimated (for all records) 3—Modeled (for non-US records)
- SalesVolumeReliability? string - The reliability of the SalesVolume figure. Available values include: 0—Actual number 1—Low 2—Estimated (for all records) 3—Modeled (for non-US records)
- CurrencyCode? string - The currency in which the company’s sales volume is expressed. The full list of values can be found at the Optimizer Resources page maintained by Dun & Bradstreet. Maximum size is 4 characters.
- LegalStatus? string - Identifies the legal structure of an organization.
- GlobalUltimateTotalEmployees? decimal - The total number of employees at the Global Ultimate, which is the highest entity within an organization’s corporate structure and may oversee branches and subsidiaries. Maximum size is 15 characters.
- EmployeesTotalReliability? string - The reliability of the EmployeesTotal figure. Available values include: 0—Actual number 1—Low 2—Estimated (for all records) 3—Modeled (for non-US records) A blank value indicates this data is unavailable.
- MinorityOwned? string - Indicates whether an organization is owned or controlled by a member of a minority group. Available values include: Y—Minority owned N—Not minority owned
- WomenOwned? string - Indicates whether a company is more than 50 percent owned or controlled by a woman. Available values include: Y—Owned by a woman N—Not owned by a woman, or unknown
- SmallBusiness? string - Indicates whether the company is designated a small business as defined by the Small Business Administration of the US government. Available values include: Y—Small business site N—Not small business site
- MarketingSegmentationCluster? string - Twenty-two distinct, mutually exclusive profiles, created as a result of cluster analysis of Dun & Bradstreet data for US organizations.
- ImportExportAgent? string - Identifies whether a business imports goods or services, exports goods or services, and/or is an agent for goods. Available values include: A—Importer/exporter/agent B—Importer/exporter C—Importer D—Importer/agent E—Exporter/agent F—Agent (keeps no inventory and does not take title goods) G—None or data not available H—Exporter
- Subsidiary? string - Indicates whether a company is more than 50 percent owned by another organization. Available values include: 0—Not subsidiary of another organization 3—Subsidiary of another organization
- TradeStyle2? string - An additional tradestyle used by the organization. Maximum size is 255 characters.
- TradeStyle3? string - An additional tradestyle used by the organization. Maximum size is 255 characters.
- TradeStyle4? string - An additional tradestyle used by the organization. Maximum size is 255 characters.
- TradeStyle5? string - An additional tradestyle used by the organization. Maximum size is 255 characters.
- NationalId? string - The identification number used in some countries for business registration and tax collection. Maximum size is 255 characters.
- NationalIdType? string - A code value that identifies the type of national identification number used. The full list of values can be found at the Optimizer Resources page maintained by Dun & Bradstreet. Maximum size is 5 characters.
- UsTaxId? string - The identification number for the company used by the Internal Revenue Service (IRS) in the administration of tax laws. Also referred to as Federal Taxpayer Identification Number. Maximum size is 9 characters.
- GeoCodeAccuracy? string - The level of accuracy of a location’s geographical coordinates compared with its physical address. Available values include: A – Non-US rooftop accuracy B – Block level C – Places the address in the correct city D – Rooftop level I – Street intersection M – Mailing address level N – Not matched P – PO BOX location S – Street level T – Census tract level Z – ZIP code level 0 (zero)– Geocode could not be assigned
- FamilyMembers? int - The total number of family members, worldwide, within an organization, including the Global Ultimate, its subsidiaries (if any), and its branches (if any). Maximum size is 5 characters.
- MarketingPreScreen? string - The probability that a company will pay with a significant delay compared to the agreed terms. The risk level is based on the standard Commercial Credit Score, and ranges from low risk to high risk. Available values include: L—Low risk of delinquency M—Moderate risk of delinquency H—High risk of delinquency Use this information for marketing pre-screening purposes only.
- GlobalUltimateDunsNumber? string - The D-U-N-S Number of the Global Ultimate, which is the highest entity within an organization’s corporate structure and may oversee branches and subsidiaries. Maximum size is 9 characters.
- GlobalUltimateBusinessName? string - The primary name of the Global Ultimate, which is the highest entity within an organization’s corporate structure and may oversee branches and subsidiaries. Maximum size is 255 characters.
- ParentOrHqDunsNumber? string - The D-U-N-S Number for the parent or headquarters. Maximum size is 9 characters.
- ParentOrHqBusinessName? string - The primary name of the parent or headquarters company.Maximum size is 255 characters.
- DomesticUltimateDunsNumber? string - The D-U-N-S Number for the Domestic Ultimate, which is the highest ranking subsidiary, specified by country, within an organization’s corporate structure. Maximum size is 9 characters.
- DomesticUltimateBusinessName? string - The primary name of the Domestic Ultimate, which is the highest ranking subsidiary, specified by country, within an organization’s corporate structure. Maximum size is 255 characters.
- LocationStatus? string - Identifies the organizational status of a company. Available values are Single location, Headquarters/Parent, and Branch. Available values include: 0—Single location (no other entities report to the business) 1—Headquarters/parent (branches and/or subsidiaries report to the business) 2—Branch (secondary location to a headquarters location)
- CompanyCurrencyIsoCode? string - The code used to represent a company’s local currency. This data is provided by the International Organization for Standardization (ISO) and is based on their three-letter currency codes. For example, USD is the ISO code for United States Dollar. Maximum size is 3 characters.
- Description? string - A brief description of the company, which may include information about its history, its products and services, and its influence on a particular industry. Maximum size is 32000 characters.
- FortuneRank? int - The numeric value of the company’s Fortune 1000 ranking. A null or blank value means that the company isn’t ranked as a Fortune 1000 company.
- IncludedInSnP500? string - A true or false value. If true, the company is listed in the S&P 500 Index. If false, the company isn’t listed in the S&P 500 Index.
- PremisesMeasure? int - A numeric value for the measurement of the premises.
- PremisesMeasureReliability? string - A descriptive accuracy of the measurement such as actual, estimated, or modeled.
- PremisesMeasureUnit? string - A descriptive measurement unit such as acres, square meters, or square feet.
- EmployeeQuantityGrowthRate? decimal - The yearly growth rate of the number of employees in a company expressed as a decimal percentage. The data includes the total employee growth rate for the past two years.
- SalesTurnoverGrowthRate? decimal - The increase in annual revenue from the previous value for an equivalent period expressed as a decimal percentage.
- PrimarySic8? string - The eight-digit Standard Industrial Classification (SIC) code is used to categorize business establishments by industry. The full list of values can be found at the Optimizer Resources page maintained by Dun & Bradstreet. Maximum size is 8 characters.
- PrimarySic8Desc? string - A brief description of an organization’s line of business, based on its SIC code. The full list of values can be found at the Optimizer Resources page maintained by Dun & Bradstreet. Maximum size is 80 characters.
- SecondSic8? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- SecondSic8Desc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- ThirdSic8? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- ThirdSic8Desc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- FourthSic8? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- FourthSic8Desc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- FifthSic8? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- FifthSic8Desc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- SixthSic8? string - An additional SIC code used to further classify an organization by industry. Maximum size is 8 characters.
- SixthSic8Desc? string - A brief description of an organization’s line of business, based on the corresponding SIC code. Maximum size is 80 characters.
- PriorYearEmployees? int - The total number of employees for the prior year.
- PriorYearRevenue? decimal - The annual revenue for the prior year.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DashboardComponentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DashboardComponentSObject
Represents a dashboard component, which can be a chart, metric, table, or gauge on a dashboard. Access is read-only.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the dashboard component.
- DashboardId? string - The ID of the dashboard that contains the dashboard component. See .
- CustomReportId? string - Requires the user permission "Manage All Private Reports and Dashboards." The ID of the report that provides data for the dashboard component. See .
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DashboardFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DashboardSObject
Represents a dashboard, which shows data from custom reports as visual components. Access is read-only.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- OwnerId? string - ID of the user who owns the record
- FolderId? string - Required. Returns the ID of the Folder that contains the dashboard. See Folder.
- FolderName? string - Name of the folder that contains the dashboard. Available in API version 35.0 and later.
- Title? string - Returns the title of the dashboard. Limit: 80 characters.
- DeveloperName? string - Required. The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. Label is Dashboard Unique Name.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- Description? string - Returns the description of the dashboard. Limit: 255 characters.
- LeftSize? string - Returns the size of the left column of the dashboard. Available values are: Narrow Medium Wide
- MiddleSize? string - Returns the size of the middle column of the dashboard. Available values are: Narrow Medium Wide
- RightSize? string - Returns the size of the right column in the dashboard. Available values are: Narrow Medium Wide
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RunningUserId? string - Returns the ID of the running user specified for the dashboard. If the dashboard was created in Lightning Experience and is configured to run as the viewing user, returns the user ID of the dashboard creator. If the dashboard was created in Salesforce Classic and is configured to run as the logged-in user, returns the user ID of the last specified running user.
- TitleColor? int - Returns the title text color in hexadecimal. Label is Title Color.
- TitleSize? int - Returns the title font size in points. Label is Title Size.
- TextColor? int - Returns the body text color in hexadecimal. Label is Text Color.
- BackgroundStart? int - Returns the starting fade color in hexadecimal. Label is Starting Color.
- BackgroundEnd? int - Returns the ending fade color in hexadecimal. Label is Ending Color.
- BackgroundDirection? string - Returns the direction of the background fade. Available values are: Top to Bottom Left to Right Diagonal (default value)
- Type? string - Returns the dashboard type. Available values are: SpecificUser—The dashboard displays data according to the access level of one specific running user. LoggedInUser—The dashboard displays data according to the access level of the logged-in user. MyTeamUser—The dashboard displays data according to the access level of the logged-in user, and managers can view dashboards from the point of view of users beneath them in the role hierarchy.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- DashboardResultRefreshedDate? string - Date of the dashboard result refreshed
- DashboardResultRunningUser? string - Dashboard result running user
- ColorPalette? string - Color palette
- ChartTheme? string - Chart theme
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataAssessmentFieldMetricSObject
Represents summary statistics for matched, blank, and differing fields in account records of an org compared to records in Data.com.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - An optional field used to name your record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- DataAssessmentMetricId? string - A unique number that identifies the parent DataAssessmentMetric record.
- FieldName? string - The name of the assessed field.
- NumMatchedInSync? int - The number of matched records that have the same value for this field.
- NumMatchedDifferent? int - The number of matched records that have a different value for this field.
- NumMatchedBlanks? int - The number of matched records that contain blank fields.
- NumUnmatchedBlanks? int - The number of unmatched records that contain blank fields.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataAssessmentMetricSObject
Represents a summary of statistics for fields matched and unmatched in your account records with Data.com account records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - An optional field used to name your record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- NumTotal? int - The number of records available for data assessment processing.
- NumProcessed? int - The number of records processed in the data assessment.
- NumMatched? int - The number of matched records.
- NumMatchedDifferent? int - The number of records in your org matched with a Data.com record that have different fields.
- NumUnmatched? int - The number of records not matched.
- NumDuplicates? int - The number of duplicate records.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataAssessmentValueMetricSObject
Summarizes the number of fields matched for your account records with Data.com account records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - An optional field used to name your record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- DataAssessmentFieldMetricId? string - A unique number that identifies the parent DataAssessementFieldMetric record.
- FieldValue? string - The value in the matched field.
- ValueCount? int - The number of times this value appears in this field.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DatacloudAddressSObject
Represents a set of read-only fields used to return geolocation information to enhance your company and account records in Salesforce. This object is accessible only from the Data.com suite of products.
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- AddressLine1? string - A standard postal address.
- AddressLine2? string - Additional information for a standard postal address, such as apartment number or suite number.
- City? string - The name of the city where the address is located.
- State? string - A name or abbreviation for a state or province in the address.
- Country? string - The name of the country where the address is located.
- PostalCode? string - Standard postal code for the address.
- Latitude? string - The distance, measured in degrees, north or south of the equator.
- Longitude? string - The distance, measured in degrees, east or west of the prime meridian.
- GeoAccuracyCode? string - Address Single close or exact match with the address, or an address that shares the house number. Near address Single match point with a calculated possible address along the street segment of the address. Block Single close match with a street address centered on a block. Street Single close match with an address at the center of the street segment. Extended Zip Single close match with the address centered in the extended postal code. A more specific location within a ZIP code. Zip Single close match with the address centered in the postal code. Locality The center of a village, suburb, neighborhood, or another locally recognized geographic boundary where the address is located. City The center of the city where the address is located. County The largest administrative division of most states in the United States where the address is located. State A geographical and political boundary that is part of the United States where the address is located. California is a state in the United States. Unknown The address could not be found.
- GeoAccuracyNum? string - A value for the accuracy of the address. Geo Accuracy Code Geo Accuracy Number Address 100 Near address 90 Block 80 Street 70 Extended Zip 60 Zip 50 Locality 40 City 30 County 20 State 10 Unknown 0
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DatacloudCompanySObject
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- CompanyId? string - ID of the associated company
- Name? string - Name of the record
- Description? string - Description of the record
- IsInactive? boolean - Indicates whether the record is inactive (true) or not (false)
- Phone? string - Phone number
- Fax? string - Fax number
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- StateCode? string - State code
- Country? string - Country of the address
- CountryCode? string - Country code
- Zip? string - Zip
- Site? string - Site
- Industry? string - Industry of the account
- NumberOfEmployees? int - Number of employees
- AnnualRevenue? decimal - Annual revenue of the account
- DunsNumber? string - DUNS number of the company
- NaicsCode? string - NAICS code of the company
- NaicsDesc? string - Description of the NAICS code
- Sic? string - Standard Industrial Classification code
- SicDesc? string - Description of the SIC code
- Ownership? string - Ownership type of the company
- IsOwned? boolean - Indicates whether the record is owned (true) or not (false)
- TickerSymbol? string - Ticker symbol of the company
- TradeStyle? string - Trade style
- Website? string - Website URL
- YearStarted? string - Year the company was started
- ActiveContacts? int - Active contacts
- UpdatedDate? string - Date of the updated
- FortuneRank? int - Fortune rank
- IncludedInSnP500? string - Included in sn p 500
- PremisesMeasure? int - Premises measure
- PremisesMeasureReliability? string - Premises measure reliability
- PremisesMeasureUnit? string - Premises measure unit
- EmployeeQuantityGrowthRate? decimal - Employee quantity growth rate
- SalesTurnoverGrowthRate? decimal - Sales turnover growth rate
- PriorYearEmployees? int - Prior year employees
- PriorYearRevenue? decimal - Prior year revenue
- IsInCrm? boolean - Indicates whether the record is in CRM (true) or not (false)
- FullAddress? string - Full address
- SicCodeDesc? string - SIC code desc
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DatacloudContactSObject
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- CompanyId? string - ID of the associated company
- ContactId? string - ID of the associated contact
- CompanyName? string - Name of the company
- Title? string - Title of the feed item
- IsInactive? boolean - Indicates whether the record is inactive (true) or not (false)
- FirstName? string - First name of the individual
- LastName? string - Last name of the individual
- Phone? string - Phone number
- Email? string - Email address
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- Country? string - Country of the address
- Zip? string - Zip
- Department? string - Department of the individual
- Level? string - Level
- IsOwned? boolean - Indicates whether the record is owned (true) or not (false)
- UpdatedDate? string - Date of the updated
- IsInCrm? boolean - Indicates whether the record is in CRM (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DatacloudDandBCompanySObject
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- Name? string - Name of the record
- DunsNumber? string - DUNS number of the company
- CompanyId? string - ID of the associated company
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- StateCode? string - State code
- Country? string - Country of the address
- CountryCode? string - Country code
- Zip? string - Zip
- Phone? string - Phone number
- Fax? string - Fax number
- CountryAccessCode? string - Country access code
- PublicIndicator? string - Public indicator
- StockSymbol? string - Stock symbol
- StockExchange? string - Stock exchange
- SalesVolume? decimal - Sales volume
- URL? string - URL of the record
- OutOfBusiness? string - Out of business
- EmployeesTotal? decimal - Employees total
- FipsMsaCode? string - Fips msa code
- FipsMsaDesc? string - Fips msa desc
- TradeStyle1? string - Trade style 1
- YearStarted? string - Year the company was started
- MailingStreet? string - Mailing street address
- MailingCity? string - Mailing city
- MailingState? string - Mailing state or province
- MailingStateCode? string - Mailing state code
- MailingCountry? string - Mailing country
- MailingCountryCode? string - Mailing country code
- MailingZip? string - Mailing zip
- Latitude? string - Latitude coordinate of the address
- Longitude? string - Longitude coordinate of the address
- PrimarySic? string - Primary SIC
- PrimarySicDesc? string - Primary SIC desc
- SecondSic? string - Second SIC
- SecondSicDesc? string - Second SIC desc
- ThirdSic? string - Third SIC
- ThirdSicDesc? string - Third SIC desc
- FourthSic? string - Fourth SIC
- FourthSicDesc? string - Fourth SIC desc
- FifthSic? string - Fifth SIC
- FifthSicDesc? string - Fifth SIC desc
- SixthSic? string - Sixth SIC
- SixthSicDesc? string - Sixth SIC desc
- PrimaryNaics? string - Primary NAICS
- PrimaryNaicsDesc? string - Primary NAICS desc
- SecondNaics? string - Second NAICS
- SecondNaicsDesc? string - Second NAICS desc
- ThirdNaics? string - Third NAICS
- ThirdNaicsDesc? string - Third NAICS desc
- FourthNaics? string - Fourth NAICS
- FourthNaicsDesc? string - Fourth NAICS desc
- FifthNaics? string - Fifth NAICS
- FifthNaicsDesc? string - Fifth NAICS desc
- SixthNaics? string - Sixth NAICS
- SixthNaicsDesc? string - Sixth NAICS desc
- OwnOrRent? string - Own or rent
- EmployeesHere? decimal - Employees here
- EmployeesHereReliability? string - Employees here reliability
- SalesVolumeReliability? string - Sales volume reliability
- CurrencyCode? string - Currency code
- LegalStatus? string - Status of the legal
- GlobalUltimateTotalEmployees? decimal - Global ultimate total employees
- EmployeesTotalReliability? string - Employees total reliability
- MinorityOwned? string - Minority owned
- WomenOwned? string - Women owned
- SmallBusiness? string - Small business
- MarketingSegmentationCluster? string - Marketing segmentation cluster
- ImportExportAgent? string - Import export agent
- Subsidiary? string - Subsidiary
- TradeStyle2? string - Trade style 2
- TradeStyle3? string - Trade style 3
- TradeStyle4? string - Trade style 4
- TradeStyle5? string - Trade style 5
- NationalId? string - ID of the associated national
- NationalIdType? string - Type of the national ID
- UsTaxId? string - ID of the associated us tax
- GeoCodeAccuracy? string - Geo code accuracy
- FamilyMembers? int - Family members
- MarketingPreScreen? string - Marketing pre screen
- GlobalUltimateDunsNumber? string - Global ultimate DUNS number
- GlobalUltimateBusinessName? string - Name of the global ultimate business
- ParentOrHqDunsNumber? string - Parent or hq DUNS number
- ParentOrHqBusinessName? string - Name of the parent or hq business
- DomesticUltimateDunsNumber? string - Domestic ultimate DUNS number
- DomesticUltimateBusinessName? string - Name of the domestic ultimate business
- LocationStatus? string - Status of the location
- CompanyCurrencyIsoCode? string - Company currency iso code
- Description? string - Description of the record
- IsOwned? boolean - Indicates whether the record is owned (true) or not (false)
- IsParent? boolean - Indicates whether the record is parent (true) or not (false)
- FortuneRank? int - Fortune rank
- IncludedInSnP500? string - Included in sn p 500
- PremisesMeasure? int - Premises measure
- PremisesMeasureReliability? string - Premises measure reliability
- PremisesMeasureUnit? string - Premises measure unit
- EmployeeQuantityGrowthRate? decimal - Employee quantity growth rate
- SalesTurnoverGrowthRate? decimal - Sales turnover growth rate
- PrimarySic8? string - Primary SIC 8
- PrimarySic8Desc? string - Primary SIC 8 desc
- SecondSic8? string - Second SIC 8
- SecondSic8Desc? string - Second SIC 8 desc
- ThirdSic8? string - Third SIC 8
- ThirdSic8Desc? string - Third SIC 8 desc
- FourthSic8? string - Fourth SIC 8
- FourthSic8Desc? string - Fourth SIC 8 desc
- FifthSic8? string - Fifth SIC 8
- FifthSic8Desc? string - Fifth SIC 8 desc
- SixthSic8? string - Sixth SIC 8
- SixthSic8Desc? string - Sixth SIC 8 desc
- PriorYearEmployees? int - Prior year employees
- PriorYearRevenue? decimal - Prior year revenue
- Industry? string - Industry of the account
- Revenue? decimal - Revenue
- IsInCrm? boolean - Indicates whether the record is in CRM (true) or not (false)
- FullAddress? string - Full address
- SicCodeDesc? string - SIC code desc
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DatacloudOwnedEntitySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- DataDotComKey? string - Data dot com key
- DatacloudEntityType? string - Type of the datacloud entity
- UserId? string - ID of the user associated with the record
- PurchaseUsageId? string - ID of the associated purchase usage
- PurchaseType? string - Type of the purchase
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DatacloudPurchaseUsageSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- UserId? string - ID of the user associated with the record
- UserType? string - Type of the user
- PurchaseType? string - Type of the purchase
- DatacloudEntityType? string - Type of the datacloud entity
- Usage? decimal - Usage
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataObjectDataChgEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- EventType? string - Type of the event
- EventSchemaVersion? string - Event schema version
- EventCreationDateTime? string - Date and time of the event creation
- EventPublishDateTime? string - Date and time of the event publish
- SourceObjectDeveloperName? string - Name of the source object developer
- ActionDeveloperName? string - Name of the action developer
- EventPrompt? string - Event prompt
- PayloadPrevValue? string - Payload prev value
- PayloadCurrentValue? string - Payload current value
- PayloadSchema? string - Payload schema
- Offset? string - Offset
- PayloadMetadata? string - Payload metadata
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataStatisticsSObject
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- StatType? string - Type of the stat
- UserId? string - ID of the user associated with the record
- Type? string - Type or category of the record
- StatValue? int - Stat value
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataTypeSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- DeveloperName? string - Unique developer name for the record
- IsComplex? boolean - Indicates whether the record is complex (true) or not (false)
- ContextServiceDataTypeId? string - ID of the associated context service data type
- ContextWsdlDataTypeId? string - ID of the associated context wsdl data type
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataUseLegalBasisHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DataUseLegalBasisId? string - ID of the associated data use legal basis
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataUseLegalBasisShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataUseLegalBasisSObject
Represents the legal basis for contacting a customer, such as billing or contract.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Specifies a name for the legal basis. For example, “billing” or “contract”.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- Source? string - Indicates the source of the legal basis. For example, the URL of a contract.
- Description? string - Description of the data use legal basis.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataUsePurposeHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DataUsePurposeId? string - ID of the associated data use purpose
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataUsePurposeShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataUsePurposeSObject
Represents the reason for contacting a prospect or customer, such as for billing, marketing, or surveys
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Identifies the reason for contacting a customer. For example, billing or marketing.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- LegalBasisId? string - Identifies the legal basis record associated with the data use purpose.
- Description? string - Indicates the purpose for contacting a customer.
- CanDataSubjectOptOut? boolean - Required. Indicates whether the customer can decline contact for the described purpose.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DataWeaveResourceSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- IsProtected? boolean - Indicates whether the record is protected (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ContentType? string - Type of the content
- ApiVersion? decimal - API version of the record
- BodyLength? int - Body length
- IsGlobal? boolean - Indicates whether the record is global (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DeclinedEventRelationSObject
Represents event participants (invitees or attendees) with the status Declined for a given event.
Fields
- Id? string - Unique identifier for the record
- RelationId? string - Indicates the ID of the invitee.
- EventId? string - Indicates the ID of the event.
- RespondedDate? string - Indicates the most recent date and time when the invitee declined an invitation to the event.
- Response? string - Indicates the content of the response field. Label is Comment.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Type? string - Indicates whether the invitee is a user, lead or contact, or resource.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DeleteEventSObject
Represents a record that has been soft deleted.
Fields
- Id? string - Unique identifier for the record
- Record? string - The ID of the record that was deleted.
- RecordName? string - The name of the record that was deleted.
- DeletedById? string - The ID of the user who deleted the record.
- DeletedDate? string - The date and time when the record was deleted.
- SobjectName? string - The type of record that was deleted, for example, Account.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DescribeGlobalResult
Fields
- sobjects? DescribeGlobalResult_sobjects[] - sobjects
- encoding? string - encoding
- maxBatchSize? int - max batch size
salesforce.types: DescribeGlobalResult_sobjects
Fields
- name? string - Name of the object or field
- label? string - Display label
- labelPlural? string - Plural form of the label
- keyPrefix? string - Key prefix for the object
- custom? boolean - Indicates whether the object or field is custom
- customSetting? boolean - Indicates whether this is a custom setting
- activateable? boolean - Indicates whether the object can be activated
- createable? boolean - Indicates whether the object can be created
- updateable? boolean - Indicates whether the object or field can be updated
- deletable? boolean - Indicates whether the object can be deleted
- undeletable? boolean - Indicates whether the object can be undeleted
- mergeable? boolean - Indicates whether the object can be merged
- replicateable? boolean - Indicates whether the object can be replicated
- triggerable? boolean - Indicates whether the object supports triggers
- queryable? boolean - Indicates whether the object can be queried
- retrieveable? boolean - Indicates whether the object can be retrieved
- searchable? boolean - Indicates whether the object can be searched
- layoutable? boolean - Indicates whether the object supports layouts
- feedEnabled? boolean - Indicates whether feed tracking is enabled
- mruEnabled? boolean - Indicates whether most recently used tracking is enabled
- hasSubtypes? boolean - Indicates whether the object has subtypes
- isSubtype? boolean - Indicates whether the object is a subtype
- dataTranslationEnabled? boolean - Indicates whether data translation is enabled
- isInterface? boolean - Indicates whether the object is an interface
- deepCloneable? boolean - Indicates whether the object can be deep cloned
- associateEntityType? string - Associated entity type
- associateParentEntity? string - Associated parent entity
- deprecatedAndHidden? boolean - Indicates whether the object or field is deprecated and hidden
- urls? record { string... } - Map of related URLs
salesforce.types: DescribeSObjectResult
Fields
- name? string - Name of the object or field
- label? string - Display label
- labelPlural? string - Plural form of the label
- keyPrefix? string - Key prefix for the object
- custom? boolean - Indicates whether the object or field is custom
- customSetting? boolean - Indicates whether this is a custom setting
- activateable? boolean - Indicates whether the object can be activated
- createable? boolean - Indicates whether the object can be created
- updateable? boolean - Indicates whether the object or field can be updated
- deletable? boolean - Indicates whether the object can be deleted
- undeletable? boolean - Indicates whether the object can be undeleted
- mergeable? boolean - Indicates whether the object can be merged
- replicateable? boolean - Indicates whether the object can be replicated
- triggerable? boolean - Indicates whether the object supports triggers
- queryable? boolean - Indicates whether the object can be queried
- retrieveable? boolean - Indicates whether the object can be retrieved
- searchable? boolean - Indicates whether the object can be searched
- layoutable? boolean - Indicates whether the object supports layouts
- feedEnabled? boolean - Indicates whether feed tracking is enabled
- mruEnabled? boolean - Indicates whether most recently used tracking is enabled
- hasSubtypes? boolean - Indicates whether the object has subtypes
- isSubtype? boolean - Indicates whether the object is a subtype
- dataTranslationEnabled? boolean - Indicates whether data translation is enabled
- isInterface? boolean - Indicates whether the object is an interface
- deepCloneable? boolean - Indicates whether the object can be deep cloned
- associateEntityType? string - Associated entity type
- associateParentEntity? string - Associated parent entity
- fields? DescribeSObjectResult_fields[] - Fields of the SObject
- namedLayoutInfos? DescribeSObjectResult_namedLayoutInfos[] - Named layout information for the SObject
- compactLayoutable? boolean - Indicates whether the object supports compact layouts
- searchLayoutable? boolean - Indicates whether the object supports search layouts
- lookupLayoutable? boolean - Indicates whether the object supports lookup layouts
- listviewable? boolean - Indicates whether the object supports list views
- actionOverrides? DescribeSObjectResult_actionOverrides[] - Action overrides for the SObject
- defaultImplementation? string - Default implementation for the interface
- implementsInterfaces? string - Interfaces implemented by the object
- implementedBy? string - Objects that implement this interface
- extendsInterfaces? string - Interfaces extended by this interface
- extendedBy? string - Interfaces that extend this interface
- supportedScopes? DescribeSObjectResult_supportedScopes[] - Supported scopes for SOSL searches
- networkScopeFieldName? string - Name of the network scope field
- recordTypeInfos? DescribeSObjectResult_recordTypeInfos[] - Record type information for the SObject
- childRelationships? DescribeSObjectResult_childRelationships[] - Child relationships of the SObject
- sobjectDescribeOption? "DEFAULT"|"FULL"|"DEFERRED" - Describe option for the SObject
- deprecatedAndHidden? boolean - Indicates whether the object or field is deprecated and hidden
- urls? record { string... } - Map of related URLs
salesforce.types: DescribeSObjectResult_actionOverrides
Fields
- pageId? string - ID of the page for the action override
- name? string - Name of the object or field
- url? string - URL associated with the record
- isAvailableInTouch? boolean - Indicates whether the action is available in Salesforce mobile
- formFactor? string - Form factor for the action override
salesforce.types: DescribeSObjectResult_childRelationships
Fields
- relationshipName? string - Name of the relationship
- junctionIdListNames? string[] - Names of junction ID lists
- junctionReferenceTo? string[] - Junction reference targets
- childSObject? string - Name of the child SObject
- 'field? string - Field reference
- restrictedDelete? boolean - Indicates whether delete is restricted
- deprecatedAndHidden? boolean - Indicates whether the object or field is deprecated and hidden
- cascadeDelete? boolean - Indicates whether cascade delete is enabled
salesforce.types: DescribeSObjectResult_fields
Fields
- 'type? string - Type of the object or field
- extraTypeInfo? string - Extra type information for the field
- queryByDistance? boolean - Indicates whether the field supports query by distance
- name? string - Name of the object or field
- label? string - Display label
- soapType? string - SOAP type of the field
- custom? boolean - Indicates whether the object or field is custom
- nameField? boolean - Indicates whether this is a name field
- nillable? boolean - Indicates whether the field can be null
- defaultedOnCreate? boolean - Indicates whether the field has a default value on creation
- externalId? boolean - Indicates whether the field is an external ID
- idLookup? boolean - Indicates whether the field can be used for ID lookup
- caseSensitive? boolean - Indicates whether the field is case-sensitive
- unique? boolean - Indicates whether the field requires unique values
- encrypted? boolean - Indicates whether the field is encrypted
- htmlFormatted? boolean - Indicates whether the field is HTML formatted
- defaultValueFormula? string - Default value formula for the field
- calculated? boolean - Indicates whether the field is a calculated field
- calculatedFormula? string - Formula for the calculated field
- formulaTreatNullNumberAsZero? boolean - Indicates whether null numbers are treated as zero in formulas
- length? int - Maximum length of the field
- byteLength? int - Maximum length of the field in bytes
- mask? string - Mask pattern for the field
- maskType? string - Type of mask applied to the field
- restrictedPicklist? boolean - Indicates whether the picklist is restricted
- picklistValues? DescribeSObjectResult_picklistValues[] - Available picklist values for the field
- aiPredictionField? boolean - Indicates whether this is an AI prediction field
- controllerName? string - Name of the controlling field for dependent picklists
- referenceTo? string[] - Objects that this field references
- referenceTargetField? string - Target field of the reference
- relationshipName? string - Name of the relationship
- relationshipOrder? int - Order of the relationship
- writeRequiresMasterRead? boolean - Indicates whether writing requires master read access
- precision? int - Numeric precision of the field
- scale? int - Numeric scale of the field
- digits? int - Number of digits for the field
- createable? boolean - Indicates whether the object can be created
- updateable? boolean - Indicates whether the object or field can be updated
- filterable? boolean - Indicates whether the field can be used in filters
- aggregatable? boolean - Indicates whether the field can be aggregated
- compoundFieldName? string - Name of the compound field this belongs to
- searchPrefilterable? boolean - Indicates whether the field supports search prefiltering
- groupable? boolean - Indicates whether the field can be used in GROUP BY
- sortable? boolean - Indicates whether the field can be sorted
- inlineHelpText? string - Inline help text for the field
- permissionable? boolean - Indicates whether field-level security can be set
- displayLocationInDecimal? boolean - Indicates whether location is displayed in decimal format
- polymorphicForeignKey? boolean - Indicates whether this is a polymorphic foreign key
- dataTranslationEnabled? boolean - Indicates whether data translation is enabled
- namePointing? boolean - Indicates whether this field points to a name field
- restrictedDelete? boolean - Indicates whether delete is restricted
- deprecatedAndHidden? boolean - Indicates whether the object or field is deprecated and hidden
- dependentPicklist? boolean - Indicates whether this is a dependent picklist
- filteredLookupInfo? DescribeSObjectResult_filteredLookupInfo - Filtered lookup information for the field
- autoNumber? boolean - Indicates whether this is an auto-number field
- highScaleNumber? boolean - Indicates whether this is a high-scale number field
- cascadeDelete? boolean - Indicates whether cascade delete is enabled
salesforce.types: DescribeSObjectResult_filteredLookupInfo
Fields
- controllingFields? string[] - Fields that control the filtered lookup
- optionalFilter? boolean - Indicates whether the filter is optional
- dependent? boolean - Indicates whether the lookup is dependent
salesforce.types: DescribeSObjectResult_namedLayoutInfos
Fields
- name? string - Name of the object or field
- urls? record { string... } - Map of related URLs
salesforce.types: DescribeSObjectResult_picklistValues
Fields
- label? string - Display label
- value? string - Value of the picklist entry
- defaultValue? boolean - Indicates whether this is the default picklist value
- active? boolean - Indicates whether the record type is active
- validFor? string - Comma-separated list of controlling values
salesforce.types: DescribeSObjectResult_recordTypeInfos
Fields
- available? boolean - Indicates whether the record type is available
- defaultRecordTypeMapping? boolean - Indicates whether this is the default record type mapping
- name? string - Name of the object or field
- developerName? string - Developer name of the record type
- recordTypeId? string - ID of the record type
- active? boolean - Indicates whether the record type is active
- master? boolean - Indicates whether this is the master record type
- urls? record { string... } - Map of related URLs
salesforce.types: DescribeSObjectResult_supportedScopes
Fields
- label? string - Display label
- name? string - Name of the object or field
salesforce.types: DigitalWalletSObject
The digital wallet entity represents a customer’s digital wallet service. Commerce Payments can use a digital wallet as a payment source when processing payments through a payment gateway.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DigitalWalletNumber? string - System-generated reference number for the digital wallet.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PaymentGatewayId? string - Gateway used with transactions for the digital wallet.
- NickName? string - User-defined nickname for the digital wallet.
- GatewayToken? string - Gateway token used when the digital wallet interacts with the payment gateway.
- GatewayTokenDetails? string - Unique ID generated by the payment gateway for the card for future transactions.
- Customer? string - Customer name of the digital wallet owner.
- Email? string - Email of the digital wallet owner.
- AccountId? string - The account of the customer owns the digital wallet.
- Status? string - Defines the state of the digital wallet as a payment source.
- CompanyName? string - Company of the digital wallet owner.
- PaymentMethodStreet? string - Part of the address for the payment method.
- PaymentMethodCity? string - Part of the address for the payment method.
- PaymentMethodState? string - Part of the address for the payment method.
- PaymentMethodPostalCode? string - Part of the address for the payment method.
- PaymentMethodCountry? string - Part of the address for the payment method.
- PaymentMethodLatitude? decimal - Part of the address for the payment method.
- PaymentMethodLongitude? decimal - Part of the address for the payment method.
- PaymentMethodGeocodeAccuracy? string - Part of the address for the payment method.
- PaymentMethodAddress? record {} - Part of the address for the payment method.
- Comments? string - Users can provide additional details about the digital wallet. Supports a maximum of 1000 characters.
- ProcessingMode? string - Defines whether the digital wallet is used for transactions made inside or outside the payment platform.
- MacAddress? string - The MAC address of the digital wallet owner.
- Phone? string - Phone number of the digital wallet owner.
- IpAddress? string - The IP address of the digital wallet owner.
- AuditEmail? string - Email of the digital wallet owner.
- GatewayTokenEncrypted? string - Gateway token encrypted
- IsAutoPayEnabled? boolean - Indicates whether the record is auto pay enabled (true) or not (false)
- PaymentMethodType? string - Type of the payment method
- PaymentMethodSubType? string - Type of the payment method sub
- PaymentMethodDetails? string - Payment method details
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DocumentAttachmentMapSObject
Maps the relationship between an EmailTemplate and its attachment, which is stored as a Document.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the EmailTemplate parent. The attachment identified by DocumentId is attached to the EmailTemplate specified in this field.
- DocumentId? string - ID of the document that this object tracks.
- DocumentSequence? int - Represents the order that the attachments will be included in the email defined by the EmailTemplate specified by the DocumentId. Label is Attachment Sequence. The first attachment is given a value of 0, and each subsequent attachment is given a value incremented by 1.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DocumentSObject
Represents a file that a user has uploaded. Unlike Attachment records, documents are not attached to a parent object.
Fields
- Id? string - Unique identifier for the record
- FolderId? string - Required. ID of the Folder that contains the document.
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- Name? string - Required. Name of the document. Label is Document Name.
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. Label is Document Unique Name.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- ContentType? string - Type of content. Label is Mime Type. Limit: 120 characters. If the Don't allow HTML uploads as attachments or document records security setting is enabled for your organization, you cannot upload files with the following file extensions: .htm, .html, .htt, .htx, .mhtm, .mhtml, .shtm, .shtml, .acgi, .svg.
- Type? string - File type of the Document. In general, the values match the file extension for the type of Document (such as pdf or jpg). Label is File Extension.
- IsPublic? boolean - Indicates whether the object is available for external use (true) or not (false). Label is Externally Available.
- BodyLength? int - Size of the file (in bytes).
- Body? record {} - Required. Encoded file data. If specified, then do not specify a URL.
- Url? string - URL reference to the file (instead of storing it in the database). If specified, do not specify the Body or BodyLength.
- Description? string - Text description of the Document. Limit: 255 characters.
- Keywords? string - Keywords. Limit: 255 characters.
- IsInternalUseOnly? boolean - Indicates whether the object is only available for internal use (true) or not (false). Label is Internal Use Only.
- AuthorId? string - ID of the User who is responsible for the Document.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsBodySearchable? boolean - Indicates whether the contents of the object can be searched using a SOSL FIND call. The ALL FIELDS search group includes the content as a searchable field.
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DomainSiteSObject
Read-only junction object that joins together the Site and Domain objects.
Fields
- Id? string - Unique identifier for the record
- DomainId? string - The ID of the associated Domain.
- SiteId? string - The ID of the associated Site.
- PathPrefix? string - Shows where a site’s root exists on a domain. Can only be set for custom Web addresses. Always begins with a /.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DomainSObject
Read-only object that represents a custom Web address assigned to a site in your organization.
Fields
- Id? string - Unique identifier for the record
- DomainType? string - The global namespace that this custom Web address belongs to. This value is set to DNS for custom Web addresses in the global DNS. DomainType can have the following value: DNS—Domain Name System (DNS)
- Domain? string - The branded custom Web address within the global namespace identified by this domain's type. In the Domain Name System (DNS) global namespace, this field is the custom Web address that you registered with a third-party domain name registrar. The custom Web address can be used to access the site of this domain.
- OptionsHstsPreload? boolean - Options hsts preload
- CnameTarget? string - The canonical name (CNAME) of the external host or server. If you use a custom domain with a non-Salesforce provider, such as your own external server or CDN provider, to serve your domain, this field points to the CNAME of the external provider. This field is available in API version 43.0 and later.
- HttpsOption? string - Current HTTPS option. Values may include: CdnPartner—Content Delivery Network (CDN) partner of Salesforce Community—Experience Cloud site Force.com Subdomain CommunityAlt—Experience Cloud site My Domain ExternalHttps—Domain is served by an external host NoHttps—No HTTPS OrgDomain—My Domain Sites—Salesforce Sites Subdomain SitesAlt—Salesforce Sites My Domain SitesRuntime—Salesforce Cloud This field is available in API version 47.0 and higher.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DuplicateRecordItemSObject
Represents an individual record that’s part of a duplicate record set. Use this object to create custom report types.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The autogenerated name that’s given to the Duplicate Record Item. Label is Duplicate Record Item Name.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- DuplicateRecordSetId? string - The duplicate record set that the duplicate record item is assigned to.
- RecordId? string - The name of the record as it appears on the record’s detail page.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DuplicateRecordSetSObject
Represents a group of records that have been identified as duplicates. Each duplicate record set contains one or more duplicate record items. Use this object to create custom report types and view the results of duplicate jobs.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The autogenerated name that’s given to the duplicate record set. Label is Duplicate Record Set Name.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- DuplicateRuleId? string - The duplicate rule used to identify this list of duplicate records.
- RecordCount? int - The number of record items in the set.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: DuplicateRuleSObject
Represents a duplicate rule for detecting duplicate records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SobjectType? string - The type of object the duplicate rule is defined for. For example, account, contact, or lead.
- DeveloperName? string - The developer name for the duplicate rule.
- Language? string - The language for the duplicate rule.
- MasterLabel? string - The label for the duplicate rule.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsActive? boolean - Indicates whether a duplicate rule is active (true) or not (false). This field is read only.
- SobjectSubtype? string - Sobject subtype
- LastViewedDate? string - Date and time when the record was last viewed
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailBounceEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- BouncedAddress? string - Bounced address
- ErrorMessage? string - Error message associated with the record
- SenderAddress? string - Sender address
- Classification? string - Classification
- BouncedObjectId? string - ID of the associated bounced object
- BounceDate? string - Date of the bounce
- ShouldGenerateDsn? boolean - Should generate dsn
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailCaptureSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- ToPattern? string - To pattern
- FromPattern? string - From pattern
- Sender? string - Sender
- Recipient? string - Recipient
- CaptureDate? string - Date of the capture
- RawMessageLength? int - Raw message length
- RawMessage? record {} - Raw message
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailDomainFilterSObject
Represents a filter that determines whether an email relay is restricted to a specific list of domains.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PriorityNumber? int - Indicates the order in which the email domain filter is processed. Filters are evaluated in ascending order. The priority number must be unique. If this field is left blank, it is assigned the next available number and is processed last. Processing stops after the first matching filter is applied.
- EmailRelayId? string - The ID of the EmailRelay record.
- ToDomain? string - Restricts the email relay to send emails based on the recipient domains (ToDomain) listed in this field. This field is optional, accepts a list of comma-separated values, and supports the wildcard character.
- FromDomain? string - Restricts the email relay to send emails based on the sender domains (FromDomain) listed in this field. This field is optional, accepts a list of comma-separated values, and supports the wildcard character.
- IsActive? boolean - Indicates whether the email domain filter is active (true) or not (false). Use this field to enable or disable the email domain filter.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailDomainKeySObject
Represents a domain key for an organization’s domain, used to authenticate outbound email that Salesforce sends on the organization’s behalf.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Selector? string - Text used to distinguish the DKIM key from any other DKIM keys your organization uses for the specified domain.
- Domain? string - The organization’s domain name that the DKIM key is generated for.
- DomainMatch? string - The specificity of match required on the sending domain name before signing with this DKIM key. Valid values are: DomainOnly—Sign if sending domain matches at the domain level only (example.com but not mail.example.com) SubdomainsOnly—Sign if sending domain matches at the subdomain level only (mail.example.com but not example.com) DomainAndSubdomains—Sign if sending domain matches at the domain and subdomain levels (example.com and mail.example.com)
- IsActive? boolean - Indicates whether this DKIM key is active (true) or not (false).
- AlternateSelector? string - The text used to distinguish the DKIM key from any other DKIM keys your organization uses for the specified domain. This field is available in API version 44.0 and later after activating the Critical Update.
- TxtRecordName? string - Read-only. The TXT record name is used to create the CNAME record. Refer to the Usage section for more information. This field is available in API version 44.0 and later after activating the Critical Update.
- AlternateTxtRecordName? string - The alternate TXT record name is used to create the CNAME record. Refer to the Usage section for more information. This field is available in API version 44.0 and later after activating the Critical Update.
- TxtRecordsPublishState? string - The possible values are: Published Publishing in progress Publishing failed This field is available in API version 44.0 and later after activating the Critical Update.
- KeySize? int - Indicates the RSA key size, in bits. The possible values are: 1024 2048 This field is available in API version 45.0 and later.
- PublicKey? string - Part of the domain key pair that mail recipients retrieve to decrypt the DKIM header and verify your domain. Add the PublicKey value to your domain’s DNS records before you start signing with this domain key.
- AlternatePublicKey? string - Read-only. Alternate public keys are used by Salesforce to auto-rotate domain keys. This field is available in API version 44.0 and later after activating the Critical Update.
- DomainMatchPattern? string - Domain match pattern
- PlatformType? string - Type of the platform
- ThirdSelector? string - Third selector
- ThirdTxtRecordName? string - Name of the third txt record
- Status? string - Current status of the record
- StatusMessage? string - Status message
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailMessageChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- ParentId? string - ID of the parent record
- ActivityId? string - ID of the associated activity
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- TextBody? string - Text body
- HtmlBody? string - HTML body
- Headers? string - Headers
- Subject? string - Subject line of the record
- FromName? string - Name of the from
- FromAddress? string - From address
- ToAddress? string - To address
- CcAddress? string - Cc address
- BccAddress? string - Bcc address
- Incoming? boolean - Incoming
- HasAttachment? boolean - Indicates whether the record has attachment (true) or not (false)
- Status? string - Current status of the record
- MessageDate? string - Date of the message
- ReplyToEmailMessageId? string - ID of the associated reply to email message
- IsExternallyVisible? boolean - Indicates whether the record is externally visible (true) or not (false)
- MessageIdentifier? string - Message identifier
- ThreadIdentifier? string - Thread identifier
- ClientThreadIdentifier? string - Client thread identifier
- IsClientManaged? boolean - Indicates whether the record is client managed (true) or not (false)
- RelatedToId? string - ID of the related record
- IsTracked? boolean - Indicates whether the record is tracked (true) or not (false)
- FirstOpenedDate? string - Date of the first opened
- LastOpenedDate? string - Date of the last opened
- IsBounced? boolean - Indicates whether the record is bounced (true) or not (false)
- EmailTemplateId? string - ID of the associated email template
- AutomationType? string - Type of the automation
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailMessageRelationSObject
Represents the relationship between an email and contacts, leads, and users.
Fields
- Id? string - Unique identifier for the record
- EmailMessageId? string - The ID of the EmailMessage record.
- RelationId? string - The RecordId of the sender or recipient.If a record relates an email to an email address that’s not associated with an existing contact, lead, or user record in Salesforce, the value of RelationId is null.
- RelationType? string - The type of relationship the contact, lead, or user has with the email message. Possible values include: ToAddress CcAddress BccAddress FromAddress OtherAddress For an Experience Cloud site user who is not the sender of the email, no BccAddress relations are returned.
- RelationAddress? string - The email address of the sender or recipient.If a record relates an email to an existing contact, lead, or user record in Salesforce, the value of RelationAddress is the current value of the email address. If the value is not set, it is auto-populated from RelationId.
- RelationObjectType? string - The API name of the object type of the RecordId in the RelationId field. It can be a contact, lead, or user.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailMessageSObject
Represents an email in Salesforce.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the case that’s associated with the email.
- ActivityId? string - ID of the activity that is associated with the email. Usually represents an open task that is created for the case owner when a new unread email message is received. ActivityId can only be specified for emails on cases. It’s auto-created for other entities.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- TextBody? string - The body of the email, in plain text format. If TextBody is not set, then it is extracted from HtmlBody.
- HtmlBody? string - The body of the email in HTML format.
- Headers? string - The Internet message headers of the incoming email. Used for debugging and tracing purposes. Does not apply to outgoing emails.
- Subject? string - The subject line of the email.
- Name? string - Name of the record
- FromName? string - The sender’s name. When using this field, specify an email address that exists in EmailMessageRelation, with a RelationType of FromAddress.
- FromAddress? string - The address that originated the email. When using this field, specify an email address that exists in EmailMessageRelation, with a RelationType of FromAddress.
- ValidatedFromAddress? string - A picklist value with either the sender's address, validated org-wide email addresses that originated the email, or Email-to-Case Routing Address.ValidatedFromAddress isn’t suitable for use in Group By or Sort By statements. Use FromAddressinstead.
- ToAddress? string - A string array of email addresses for recipients who were sent the email message. Include only email addresses that are not associated with Contact, Lead, or User records in Salesforce. If the recipient is a contact, lead, or user, add their ID to the ToIds field instead of adding their email address to the ToAddress field. Then the email message is automatically associated with the contact, lead, or user.
- CcAddress? string - A string array of email addresses for recipients who were sent a carbon copy of the email message. Include only email addresses that are not associated with Contact, Lead, or User records in Salesforce. If the recipient is a contact, lead, or user, add their ID to the CcIds field instead of adding their email address to the CcAddress field. Then the email message is automatically associated with the contact, lead, or user.
- BccAddress? string - A string array of email addresses for recipients who were sent a blind carbon copy of the email message. Include only email addresses that are not associated with Contact, Lead, or User records in Salesforce. If the recipient is a contact, lead, or user, add their ID to the BccIds field instead of adding their email address to the BccAddress field. When adding their ID, the email message is automatically associated with the contact, lead, or user. For an Experience Cloud site user who is not the sender of the email, this field returns null.
- Incoming? boolean - Indicates whether the email was received (true) or sent (false).
- HasAttachment? boolean - Indicates whether the email was sent with an attachment (true) or not (false).
- Status? string - The status of the email. The Status field is mostly read-only. You can change the status only from New to Read.Possible values are: 0 (New) 1 (Read) 2 (Replied) 3 (Sent) 4 (Forwarded) 5 (Draft)
- MessageDate? string - The date the email was created.
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- ReplyToEmailMessageId? string - ID of the inbound or outbound email message the current email message is a reply to. It’s not possible to reply to a message whose Status is Draft.
- IsExternallyVisible? boolean - If the Experience Cloud site case feed is enabled, IsExternallyVisible controls the external visibility of emails in sites. When IsExternallyVisible is set to true—its default value—email messages are visible to external users in the case feed.
- MessageIdentifier? string - The ID of the email message.
- ThreadIdentifier? string - The ID of the email thread the email message belongs to.
- ClientThreadIdentifier? string - Client thread identifier
- FromId? string - ID of the associated from
- IsClientManaged? boolean - If EmailMessage is created with IsClientManaged set to true, users can modify EmailMessage.ContentDocumentIds to link file attachments even when the Status of the EmailMessage is not set to Draft.
- AttachmentIds? string - Attachment ids
- RelatedToId? string - The RelatedToId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects. RelatedToIds are polymorphic. Polymorphic means a RelatedToId is equivalent to the ID of a related object.
- IsTracked? boolean - Indicates whether the email is being tracked.
- IsOpened? boolean - Indicates whether the email has been opened.
- FirstOpenedDate? string - The date the email was first opened.
- LastOpenedDate? string - The date the email was last opened.
- IsBounced? boolean - Indicates whether the email bounced.
- EmailTemplateId? string - The email template, if any, that was chosen for the email. This field is populated in Lightning Experience only.
- AutomationType? string - Type of the automation
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailRelaySObject
Represents the configuration for sending an email relay. An email relay routes email sent from Salesforce through your company’s email servers.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Host? string - Indicates the host name or IP address of your company's SMTP server.
- Port? string - Indicates the port number of your company's SMTP server. 25 587 10025 11025
- TlsSetting? string - Specifies whether Salesforce uses TLS for SMTP sessions. Off: TLS is turned off. SMTP session continues through an insecure connection. Preferred: If the remote server supports TLS, Salesforce upgrades the current SMTP session to use TLS. If TLS is unavailable, Salesforce continues the session without TLS. Required: Salesforce continues the session only if the remote server supports TLS. If TLS is unavailable, Salesforce terminates the session without delivering the email. PreferredVerify: If the remote server supports TLS, Salesforce upgrades the current SMTP session to use TLS. Before the session begins, Salesforce verifies that the certificate is signed by a valid certificate authority, and that the common name presented in the certificate matches the domain or mail exchange of the current connection. If TLS is available but the certificate is not signed or the common name does not match, Salesforce disconnects the session and does not deliver the email. If TLS is unavailable, Salesforce continues the session without TLS. RequiredVerify: Salesforce continues the session only if the remote server supports TLS, the certificate is signed by a valid certificate authority, and the common name presented in the certificate matches the domain or mail exchange to which Salesforce is connected. If any of these criteria are not met, Salesforce terminates the session without delivering the email.
- IsRequireAuth? boolean - Indicates whether (true) or not (false) authentication is required. When setting this field to true, the TlsSetting must be set to RequiredVerify. This field is available in API version 44.0 and later.
- Username? string - Specifies the username for relay host STMP authentication. When IsRequireAuth is set to true, this field is required. This field is available in API version 44.0 and later.
- Password? string - Specifies the password for relay host STMP authentication. When IsRequireAuth is set to true, this field is required. This field is available in API version 44.0 and later.
- AuthType? string - Type of the auth
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailServicesAddressSObject
An email service address.
Fields
- Id? string - Unique identifier for the record
- IsActive? boolean - Indicates whether this object is active (true) or not (false).
- LocalPart? string - The local-part of the email service address. The local-part of the address is the string that comes before the @ symbol.
- EmailDomainName? string - A read only field you can query that contains the system-generated domain part of this email service address. The system generates a unique domain-part for each email service address to ensure that no two email service addresses are identical.
- AuthorizedSenders? string - Configures the email service address to only accept messages from the email addresses or domains listed in this field. If the email service address receives a message from an unlisted email address or domain, the email service performs the action specified in the AuthorizationFailureAction field of its associated email service. Leave this field blank if you want the email service address to receive email from any email address.
- RunAsUserId? string - The username of the user whose permissions the email service assumes when processing messages sent to this address.
- FunctionId? string - The ID of the email service for which the email service address receives messages.
- DeveloperName? string - The name of the object in the API. This name can contain only underscores and alphanumeric characters and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. This 25-character field must be unique among other EmailServicesAddress records under the same EmailServiceFunction parent. In managed packages, this field prevents naming conflicts on package installations. This field is automatically generated, but you can supply your own value if you create the record using the API. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance might be slow while Salesforce generates one for each record.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailServicesFunctionSObject
An email service.
Fields
- Id? string - Unique identifier for the record
- IsActive? boolean - Indicates whether this object is active (true) or not (false).
- FunctionName? string - The name of the email service.
- AuthorizedSenders? string - Configures the email service to only accept messages from the email addresses or domains listed in this field. If the email service receives a message from an unlisted email address or domain, the email service performs the action specified in the AuthorizationFailureAction field. Leave this field blank if you want the email service to receive email from any email address.
- IsAuthenticationRequired? boolean - Configures the email service to verify the legitimacy of the sending server before processing a message. The email service uses the SPF, SenderId, and DomainKeys protocols to verify the sender's legitimacy: If the sending server passes at least one of these protocols and does not fail any, the email service accepts the email. If the server fails a protocol or does not support any of the protocols, the email service performs the action specified in the AuthenticationFailureAction field.
- IsTlsRequired? boolean - Not currently in use.
- AttachmentOption? string - Indicates the types of attachments the email service accepts. One of the following values: None—The email service accepts the message but discards any attachment. (In API version 41.0 and earlier, the value specified for this choice is 0.) NoContent—The attachment metadata (filename, MIME type, and so on) is provided to the Apex class, but the body is set to null. There was no previous numeric value for this choice. TextOnly—The email service only accepts the following types of attachments: Attachments with a Multipurpose Internet Mail Extension (MIME) type of text. Attachments with a MIME type of application/octet-stream and a file name that ends with either a .vcf or .vcs extension. These are saved as text/x-vcard and text/calendar MIME types, respectively. (In API version 41.0 and earlier, the value specified for this choice is 1.) BinaryOnly—The email service only accepts binary attachments, such as image, audio, application, and video files. (In API version 41.0 and earlier, the value specified for this choice is 2.) All—The email service accepts any type of attachment. (In API version 41.0 and earlier, the value specified for this choice is 3.)
- ApexClassId? string - Required. The ID of the Apex class that the email service uses to process inbound messages. This field is required for API version 12.0 and later.
- OverLimitAction? string - Indicates what the email service does with messages if the total number of messages processed by all email services combined has reached the daily limit for your organization. One of the following values: UseSystemDefault—The system default is used. (In API version 41.0 and earlier, the value specified for this choice is 0.) Bounce—The email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 1.) Discard—The email service deletes the message without notifying the sender. (In API version 41.0 and earlier, the value specified for this choice is 2.) Requeue—The email service queues the message for processing in the next 24 hours. If the message is not processed within 24 hours, the email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 3.) The system calculates the limit by multiplying the number of user licenses by 1,000.
- FunctionInactiveAction? string - Indicates what the email service does with messages it receives when the email service itself is inactive. One of the following values: UseSystemDefault—The system default is used. (In API version 41.0 and earlier, the value specified for this choice is 0.) Bounce—The email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 1.) Discard—The email service deletes the message without notifying the sender. (In API version 41.0 and earlier, the value specified for this choice is 2.) Requeue—The email service queues the message for processing in the next 24 hours. If the message is not processed within 24 hours, the email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 3.)
- AddressInactiveAction? string - Indicates what the email service does with messages received at an email address that is inactive.One of the following values: UseSystemDefault—The system default is used. (In API version 41.0 and earlier, the value specified for this choice is 0.) Bounce—The email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 1.) Discard—The email service deletes the message without notifying the sender. (In API version 41.0 and earlier, the value specified for this choice is 2.) Requeue—The email service queues the message for processing in the next 24 hours. If the message is not processed within 24 hours, the email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 3.)
- AuthenticationFailureAction? string - Indicates what the email service does with messages that fail or do not support any of the authentication protocols if the IsAuthenticationRequired field is true. One of the following values: UseSystemDefault—The system default is used. (In API version 41.0 and earlier, the value specified for this choice is 0.) Bounce—The email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 1.) Discard—The email service deletes the message without notifying the sender. (In API version 41.0 and earlier, the value specified for this choice is 2.) Requeue—The email service queues the message for processing in the next 24 hours. If the message is not processed within 24 hours, the email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 3.)
- AuthorizationFailureAction? string - Indicates what the email service does with messages received from senders who are not listed in the AuthorizedSenders field on either the email service or email service address.One of the following values: UseSystemDefault—The system default is used. (In API version 41.0 and earlier, the value specified for this choice is 0.) Bounce—The email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 1.) Discard—The email service deletes the message without notifying the sender. (In API version 41.0 and earlier, the value specified for this choice is 2.) Requeue—The email service queues the message for processing in the next 24 hours. If the message is not processed within 24 hours, the email service returns the message to the sender with a notification that explains why the message was rejected. (In API version 41.0 and earlier, the value specified for this choice is 3.)
- IsErrorRoutingEnabled? boolean - When incoming email messages can’t be processed, indicates whether error notification email messages are routed to a chosen address or to the senders.
- ErrorRoutingAddress? string - The destination email address for error notification email messages when IsErrorRoutingEnabled is true.
- IsTextAttachmentsAsBinary? boolean - If true, text attachments are supplied to the Apex code as a Messaging.BinaryAttachment instead of as a Messaging.TextAttachment. This means that the body is supplied as an Apex Blob instead of as an Apex String.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailStatusSObject
Represents the status of email sent.
Fields
- Id? string - Unique identifier for the record
- TaskId? string - The activity (task or event) associated with the email. Label is Activity ID.
- WhoId? string - The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID. The label is Name ID.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- TimesOpened? int - Number of times the recipient opened the email.
- FirstOpenDate? string - Date when the email was first opened by recipient. Label is Date Opened.
- LastOpenDate? string - Date when the email was last opened by recipient. Need label
- EmailTemplateName? string - The name of the EmailTemplate.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailTemplateChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- DeveloperName? string - Unique developer name for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- OwnerId? string - ID of the user who owns the record
- FolderId? string - ID of the associated folder
- BrandTemplateId? string - ID of the associated brand template
- EnhancedLetterheadId? string - ID of the associated enhanced letterhead
- TemplateStyle? string - Template style
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- TemplateType? string - Type of the template
- Encoding? string - Encoding
- Description? string - Description of the record
- Subject? string - Subject line of the record
- HtmlValue? string - HTML value
- Body? string - Body content of the feed item
- TimesUsed? int - Times used
- LastUsedDate? string - Date of the last used
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ApiVersion? decimal - API version of the record
- Markup? string - Markup
- UiType? string - Type of the UI
- RelatedEntityType? string - Type of the related entity
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmailTemplateSObject
Represents a template for mass email, or email sent when the activity history related list of a record is modified.
Fields
- Id? string - Unique identifier for the record
- Name? string - Name of the template. Label is Email Template Name.
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. Label is Template Unique Name.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- OwnerId? string - ID of the owner of the template.
- FolderId? string - ID of the folder that contains the template.
- FolderName? string - The name of the folder that contains the template.
- BrandTemplateId? string - Required. ID of the BrandTemplate associated with this email template. The brand template supplies letterhead information for the email template.
- EnhancedLetterheadId? string - ID of the enhanced letterhead associated with the email template.To use an enhanced letterhead, associate it with a Lightning email template that uses the HML merge language.
- TemplateStyle? string - Style of the template.
- IsActive? boolean - Indicates that this template is active if true, or inactive if false.
- TemplateType? string - Type of template.
- Encoding? string - Character set encoding for the template.
- Description? string - Description of the template, for example, Promotion Mass Mailing.
- Subject? string - Content of the subject line.
- HtmlValue? string - This field contains the content of the email message, including HTML coding to render the email message. Limit: 384 KB.
- Body? string - Content of the email. Limit: 384 KB.
- TimesUsed? int - Number of times this template has been used.
- LastUsedDate? string - Date and time when this EmailTemplate was last used.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApiVersion? decimal - The API version for this class. Every class has an API version specified at creation.
- Markup? string - The Visualforce markup, HTML, JavaScript, or any other Web-enabled code that defines the content of the template.
- UiType? string - Type of the UI
- RelatedEntityType? string - When UIType is 2 (Lightning Experience) or 3 (Lightning ExperienceSample), RelatedEntityType indicates which entities this template can be used with. Valid values are the entity API name: "Account" for account, "Contact" for contact, "Opportunity" for opportunity, "Lead" for lead, and so on. The value can be any entity the user has read access to (including custom entities) but not virtual entities, setup entities, or platform entities.
- IsBuilderContent? boolean - If the email template was made in Email Template Builder. The default value is false.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmbeddedServiceDetailSObject
Represents a metadata catalog object that exposes fields from the underlying Embedded Service setup objects defined in each EmbeddedServiceConfig deployment for guest users. Guest users don’t have direct access to the Embedded Service setup objects.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Developer name for the EmbeddedServiceConfig.
- Site? string - Value of the Site field in the EmbeddedServiceConfig setup object.
- PrimaryColor? string - Value of the PrimaryColor field in the EmbeddedServiceBranding setup object.
- SecondaryColor? string - Value of the SecondaryColor field in the EmbeddedServiceBranding setup object.
- ContrastPrimaryColor? string - Value of the ContrastPrimaryColor field in the EmbeddedServiceBranding setup object.
- ContrastInvertedColor? string - Accent branding color used in the embedded component, displayed as a hexadecimal value. Changes made to this field in the API aren’t reflected in the embedded component.
- NavBarColor? string - Value of the NavBarColor field in the EmbeddedServiceBranding setup object.
- NavBarTextColor? string - This field is used to set the text color for the header.
- SecondaryNavBarColor? string - This field is used to set the color of a secondary header.
- Font? string - Font used in the chat text of the Embedded Chat window.
- IsLiveAgentEnabled? boolean - Specifies whether Chat is enabled for this Embedded Service deployment (true) or not (false).
- IsFieldServiceEnabled? boolean - Specifies whether Field Service is enabled for this Embedded Service deployment (true) or not (false). Embedded Appointment Management is currently beta.
- Width? int - Width of the embedded component.
- Height? int - Height of the embedded component.
- IsPrechatEnabled? boolean - Value of the PrechatEnabled field in the EmbeddedServiceLiveAgent setup object.
- CustomPrechatComponent? string - The custom Aura component that’s used for the pre-chat page for this Embedded Chat deployment.
- AvatarImg? string - URL of the image used as the agent avatar image.
- SmallCompanyLogoImg? string - URL of the logo image used with Embedded Chat.
- PrechatBackgroundImg? string - URL of the image used for the background for the pre-chat form in Embedded Chat.
- WaitingStateBackgroundImg? string - URL of the image used for the background image in Embedded Chat while the customer waits to be connected with a support agent.
- FontSize? string - Font size for the embedded component. Possible values are: Small Medium Large
- OfflineCaseBackgroundImg? string - URL of the image used for the background for the offline support case form in Embedded Chat.
- IsOfflineCaseEnabled? boolean - Specifies whether offline support is enabled for this Embedded Chat deployment (true) or not (false).
- IsQueuePositionEnabled? boolean - Specifies whether queue position (displaying the customer’s place in line while they wait for an agent) is enabled for this Embedded Chat deployment (true) or not (false).
- ShouldShowNewAppointment? boolean - Specifies whether to display a button on the home screen for customers to create a new appointment (true) or not (false) for embedded Appointment Management (beta).
- ShouldShowExistingAppointment? boolean - Specifies whether to display a button on the home screen for customers to access their existing appointments (true) or not (false) for embedded Appointment Management (beta).
- FieldServiceHomeImg? string - URL of the image used for the home screen in embedded Appointment Management (beta).
- FieldServiceLogoImg? string - URL of the logo used for the home screen in embedded Appointment Management (beta).
- FieldServiceConfirmCardImg? string - URL of the image used for the confirmation card in embedded Appointment Management (beta).
- ShouldHideAuthDialog? boolean - Specifies whether the prompt that the customer log in again during a flow should be hidden (true) or not (false). When it’s hidden, the customer is taken directly to your login page.
- CustomMinimizedComponent? string - The custom Aura component that’s used for the minimized state for this Embedded Chat deployment.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EmbeddedServiceLabelSObject
Represents a customized label in Embedded Chat or embedded Appointment Management.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - The unique name containing EmbeddedServiceConfig.labelKey.
- EmbeddedServiceConfigDeveloperName? string - Developer name for the EmbeddedServiceConfig.
- LabelKey? string - The type of label for this embedded component. The value corresponds to the label within a label group (substate of chat state or page type).
- CustomLabelName? string - The developer name for the custom label.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelTypeFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelTypeHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- EngagementChannelTypeId? string - ID of the associated engagement channel type
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelTypeShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelTypeSObject
Represents a channel through which a customer can be reached for communication.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account owner associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the communication subscription consent record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ContactPointType? string - The contact point type of the channel.
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelWorkTypeFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelWorkTypeHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- EngagementChannelWorkTypeId? string - ID of the associated engagement channel work type
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngagementChannelWorkTypeSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- WorkTypeId? string - ID of the associated work type
- EngagementChannelTypeId? string - ID of the associated engagement channel type
- AreAllEngmtChnlSupported? boolean - Are all engmt chnl supported
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EngmtChannelTypeSettingsSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- SettingKey? string - Setting key
- EngagementChannelType? string - Type of the engagement channel
- IsSettingEnabled? string - Is setting enabled
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EnhancedLetterheadFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EnhancedLetterheadSObject
Represents an enhanced letterhead that can be associated with a Lightning email template that doesn’t use the Salesforce Merge Language (SML).
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the enhanced letterhead, such as Standard Company Letterhead.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when this enhanced letterhead was last viewed.
- LastReferencedDate? string - Date and time when this enhanced letterhead was last used.
- Description? string - Description of the contents of the header and footer.
- LetterheadHeader? string - The contents of the enhanced letterhead’s header.
- LetterheadFooter? string - The contents of the enhanced letterhead’s footer.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitlementChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- AccountId? string - ID of the associated account
- Type? string - Type or category of the record
- ServiceContractId? string - ID of the associated service contract
- ContractLineItemId? string - ID of the associated contract line item
- AssetId? string - ID of the associated asset
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- SlaProcessId? string - ID of the associated SLA process
- BusinessHoursId? string - ID of the associated business hours
- IsPerIncident? boolean - Indicates whether the record is per incident (true) or not (false)
- CasesPerEntitlement? int - Cases per entitlement
- RemainingCases? int - Remaining cases
- SvcApptBookingWindowsId? string - ID of the associated svc appt booking windows
- LocationId? string - ID of the associated location
- WorkOrdersPerEntitlement? int - Work orders per entitlement
- RemainingWorkOrders? int - Remaining work orders
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitlementContactSObject
Represents a Contact eligible to receive customer support via an Entitlement.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- Name? string - Required. Name of the entitlement contact.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EntitlementId? string - Required. ID of the Entitlement associated with the entitlement contact. Must be a valid ID.
- ContactId? string - Required. ID of the Contact associated with the entitlement. Must be a valid ID.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitlementFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitlementHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- EntitlementId? string - ID of the associated entitlement
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitlementSObject
Represents the customer support an account or contact is eligible to receive.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Required. Name of the entitlement.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- AccountId? string - ID of the Account associated with the entitlement.
- Type? string - The type of entitlement, such as Web or phone support.
- ServiceContractId? string - Required. ID of the ServiceContract associated with the entitlement. Must be a valid ID.
- ContractLineItemId? string - Required. ID of the ContractLineItem associated with the entitlement. Must be a valid ID.
- AssetId? string - Required. ID of the Asset associated with the entitlement. Must be a valid asset ID.
- StartDate? string - The first date the entitlement is in effect.
- EndDate? string - The last day the entitlement is in effect.
- SlaProcessId? string - ID of the SlaProcess associated with the entitlement. This field is available in version 19.0 and later.
- BusinessHoursId? string - Required. ID of the BusinessHours associated with the entitlement. Must be a valid business hours ID.
- IsPerIncident? boolean - Indicates whether the entitlement is limited to supporting a specific number of cases (true) or not (false).
- CasesPerEntitlement? int - The total number of cases the entitlement supports.
- RemainingCases? int - The number of cases the entitlement can support. This field decreases in value by one each time a case is created with the entitlement.
- Status? string - Status of the entitlement, such as Expired.
- SvcApptBookingWindowsId? string - The operating hours that the entitlement’s work orders should respect. The label in the user interface is Operating Hours. Available only if Field Service is enabled.
- LocationId? string - ID of the associated location
- WorkOrdersPerEntitlement? int - Total number of work orders available for this entitlement.
- RemainingWorkOrders? int - The number of agreed work orders remaining to be created.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitlementTemplateSObject
Represents predefined terms of customer support for a product (Product2).
Fields
- Id? string - Unique identifier for the record
- Name? string - Required. Name of the entitlement template.
- BusinessHoursId? string - ID of the BusinessHours associated with the entitlement template. Must be a valid business hours ID.
- Type? string - The type of entitlement template, such as Web or phone support.
- SlaProcessId? string - ID of the SlaProcess associated with the entitlement template. This field is available in API version 19.0 and later.
- IsPerIncident? boolean - Indicates whether the entitlement template is limited to supporting a specific number of cases (true) or not (false).
- CasesPerEntitlement? int - The total number of cases the entitlement template supports.
- Term? int - Number of days that the entitlement template is valid.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntityDefinitionSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- QualifiedApiName? string - Name of the qualified API
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- DeveloperName? string - Unique developer name for the record
- MasterLabel? string - Master label for the record
- Label? string - Display label for the record
- PluralLabel? string - Plural label
- DefaultCompactLayoutId? string - ID of the associated default compact layout
- IsCustomizable? boolean - Indicates whether the record is customizable (true) or not (false)
- IsApexTriggerable? boolean - Indicates whether the record is apex triggerable (true) or not (false)
- IsWorkflowEnabled? boolean - Indicates whether the record is workflow enabled (true) or not (false)
- IsProcessEnabled? boolean - Indicates whether the record is process enabled (true) or not (false)
- IsCompactLayoutable? boolean - Indicates whether the record is compact layoutable (true) or not (false)
- DeploymentStatus? string - Status of the deployment
- KeyPrefix? string - Key prefix
- IsCustomSetting? boolean - Indicates whether the record is custom setting (true) or not (false)
- IsDeprecatedAndHidden? boolean - Indicates whether the record is deprecated and hidden (true) or not (false)
- IsReplicateable? boolean - Indicates whether the record is replicateable (true) or not (false)
- IsRetrieveable? boolean - Indicates whether the record is retrieveable (true) or not (false)
- IsSearchLayoutable? boolean - Indicates whether the record is search layoutable (true) or not (false)
- IsSearchable? boolean - Indicates whether the record is searchable (true) or not (false)
- IsTriggerable? boolean - Indicates whether the record is triggerable (true) or not (false)
- IsIdEnabled? boolean - Indicates whether the record is ID enabled (true) or not (false)
- IsEverCreatable? boolean - Indicates whether the record is ever creatable (true) or not (false)
- IsEverUpdatable? boolean - Indicates whether the record is ever updatable (true) or not (false)
- IsEverDeletable? boolean - Indicates whether the record is ever deletable (true) or not (false)
- IsFeedEnabled? boolean - Indicates whether the record is feed enabled (true) or not (false)
- IsQueryable? boolean - Indicates whether the record is queryable (true) or not (false)
- IsMruEnabled? boolean - Indicates whether the record is mru enabled (true) or not (false)
- DetailUrl? string - Detail URL
- EditUrl? string - Edit URL
- NewUrl? string - New URL
- EditDefinitionUrl? string - Edit definition URL
- HelpSettingPageName? string - Name of the help setting page
- HelpSettingPageUrl? string - Help setting page URL
- RunningUserEntityAccessId? string - ID of the associated running user entity access
- PublisherId? string - ID of the associated publisher
- IsLayoutable? boolean - Indicates whether the record is layoutable (true) or not (false)
- RecordTypesSupported? record {} - Record types supported
- InternalSharingModel? string - Internal sharing model
- ExternalSharingModel? string - External sharing model
- HasSubtypes? boolean - Indicates whether the record has subtypes (true) or not (false)
- IsSubtype? boolean - Indicates whether the record is subtype (true) or not (false)
- IsAutoActivityCaptureEnabled? boolean - Indicates whether the record is auto activity capture enabled (true) or not (false)
- IsInterface? boolean - Indicates whether the record is interface (true) or not (false)
- ImplementsInterfaces? string - Implements interfaces
- ImplementedBy? string - Implemented by
- ExtendsInterfaces? string - Extends interfaces
- ExtendedBy? string - Extended by
- DefaultImplementation? string - Default implementation
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntityMilestoneFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntityMilestoneHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- EntityMilestoneId? string - ID of the associated entity milestone
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntityMilestoneSObject
Represents a required step in a customer support process on a work order. The Salesforce user interface uses the term “object milestone.”
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the milestone.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentEntityId? string - The ID of the record—for example, a work order—that contains the milestone.
- MilestoneId? string - ID of the associated milestone
- StartDate? string - The date and time that milestone tracking started.
- TargetDate? string - The date and time to complete the milestone.
- CompletionDate? string - The date and time the milestone was completed.
- SlaProcessId? string - The entitlement process associated with the milestone.
- MilestoneTypeId? string - The ID of the milestone (for instance, First Response).
- IsCompleted? boolean - Icon () that indicates a milestone completion.
- IsViolated? boolean - Icon () that indicates a milestone violation.
- TargetResponseInMins? int - The number of minutes to complete the milestone. Automatically calculated to include the business hours on the record.
- TargetResponseInHrs? decimal - The number of hours to complete the milestone. Automatically calculated to include the business hours on the record.
- TargetResponseInDays? decimal - The number of days to complete the milestone. Automatically calculated to include the business hours on the record.
- TimeRemainingInMins? string - The minutes that remain before a milestone violation. Automatically calculated to include the business hours on the record.
- TimeRemainingInHrs? string - The hours that remain before a milestone violation. Automatically calculated to include the business hours on the record.
- TimeRemainingInDays? decimal - The days that remain before a milestone violation. Automatically calculated to include the business hours on the record.
- ElapsedTimeInMins? int - The number of minutes it took to complete a milestone, including time during which the milestone was stopped. Automatically calculated to include the business hours on the record. Elapsed time is calculated only after the Completion Date field is populated. (Elapsed Time) – (Stopped Time) = (Actual Elapsed Time).
- ElapsedTimeInHrs? decimal - The number of hours it took to complete a milestone, including time during which the milestone was stopped. Automatically calculated to include the business hours on the record. Elapsed time is calculated only after the Completion Date field is populated. (Elapsed Time) – (Stopped Time) = (Actual Elapsed Time).
- ElapsedTimeInDays? decimal - The number of days it took to complete a milestone, including time during which the milestone was stopped. Automatically calculated to include the business hours on the record. Elapsed time is calculated only after the Completion Date field is populated. (Elapsed Time) – (Stopped Time) = (Actual Elapsed Time).
- TimeSinceTargetInMins? string - The minutes that have elapsed since a milestone violation. Automatically calculated to include the business hours on the record.
- TimeSinceTargetInHrs? string - The hours that have elapsed since a milestone violation. Automatically calculated to include the business hours on the record.
- TimeSinceTargetInDays? decimal - The days that have elapsed since a milestone violation. Automatically calculated to include the business hours on the record.
- BusinessHoursId? string - The business hours on the milestone. If business hours aren’t specified, the entitlement process business hours are used. If business hours are also not specified on the entitlement process, the business hours on the record are used.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntityParticleSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- QualifiedApiName? string - Name of the qualified API
- EntityDefinitionId? string - ID of the associated entity definition
- FieldDefinitionId? string - ID of the associated field definition
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- DeveloperName? string - Unique developer name for the record
- MasterLabel? string - Master label for the record
- Label? string - Display label for the record
- Length? int - Length
- DataType? string - Data type of the field that was changed
- ServiceDataTypeId? string - ID of the associated service data type
- ValueTypeId? string - ID of the associated value type
- ExtraTypeInfo? string - Extra type info
- IsAutonumber? boolean - Indicates whether the record is autonumber (true) or not (false)
- ByteLength? int - Byte length
- IsCaseSensitive? boolean - Indicates whether the record is case sensitive (true) or not (false)
- IsUnique? boolean - Indicates whether the record is unique (true) or not (false)
- IsCreatable? boolean - Indicates whether the record is creatable (true) or not (false)
- IsUpdatable? boolean - Indicates whether the record is updatable (true) or not (false)
- IsDefaultedOnCreate? boolean - Indicates whether the record is defaulted on create (true) or not (false)
- IsWriteRequiresMasterRead? boolean - Indicates whether the record is write requires master read (true) or not (false)
- IsCalculated? boolean - Indicates whether the record is calculated (true) or not (false)
- IsHighScaleNumber? boolean - Indicates whether the record is high scale number (true) or not (false)
- IsHtmlFormatted? boolean - Indicates whether the record is HTML formatted (true) or not (false)
- IsNameField? boolean - Indicates whether the record is name field (true) or not (false)
- IsNillable? boolean - Indicates whether the record is nillable (true) or not (false)
- IsPermissionable? boolean - Indicates whether the record is permissionable (true) or not (false)
- IsEncrypted? boolean - Indicates whether the record is encrypted (true) or not (false)
- Digits? int - Digits
- InlineHelpText? string - Inline help text
- RelationshipName? string - Name of the relationship
- ReferenceTargetField? string - Reference target field
- Name? string - Name of the record
- Mask? string - Mask
- MaskType? string - Type of the mask
- IsWorkflowFilterable? boolean - Indicates whether the record is workflow filterable (true) or not (false)
- IsCompactLayoutable? boolean - Indicates whether the record is compact layoutable (true) or not (false)
- Precision? int - Precision
- Scale? int - Scale
- IsFieldHistoryTracked? boolean - Indicates whether the record is field history tracked (true) or not (false)
- IsApiFilterable? boolean - Indicates whether the record is API filterable (true) or not (false)
- IsApiSortable? boolean - Indicates whether the record is API sortable (true) or not (false)
- IsApiGroupable? boolean - Indicates whether the record is API groupable (true) or not (false)
- IsListVisible? boolean - Indicates whether the record is list visible (true) or not (false)
- IsLayoutable? boolean - Indicates whether the record is layoutable (true) or not (false)
- IsDependentPicklist? boolean - Indicates whether the record is dependent picklist (true) or not (false)
- IsDeprecatedAndHidden? boolean - Indicates whether the record is deprecated and hidden (true) or not (false)
- IsDisplayLocationInDecimal? boolean - Indicates whether the record is display location in decimal (true) or not (false)
- DefaultValueFormula? string - Default value formula
- IsIdLookup? boolean - Indicates whether the record is ID lookup (true) or not (false)
- IsNamePointing? boolean - Indicates whether the record is name pointing (true) or not (false)
- RelationshipOrder? int - Relationship order
- ReferenceTo? record {} - Reference to
- IsComponent? boolean - Indicates whether the record is component (true) or not (false)
- IsCompound? boolean - Indicates whether the record is compound (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EntitySubscriptionSObject
Represents a subscription for a user following a record or another user.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - Required. ID of the record or user which the user is following.
- SubscriberId? string - Required. ID of the user who is following the record or user.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ErrorInfo
Fields
- message? string - Message text
- errorCode? string - error code
- fields? string[] - Fields of the SObject
- extendedErrorDetails? SaveResult_extendedErrorDetails[] - extended error details
salesforce.types: EventBusSubscriberSObject
Represents a trigger, process, or flow that’s subscribed to a platform event or a change data capture event. Doesn’t include CometD subscribers.
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - The ID of the subscriber. For example, the trigger ID.
- Name? string - The name of the subscribed item, such as the trigger or process name. If the subscribed item’s name is “Process”, at least one flow Pause element is subscribed to the event.
- Type? string - The subscriber type (ApexTrigger). If the subscriber is a process or flow Pause element, the type is blank.
- Topic? string - The name of the subscription channel that corresponds to a platform event or change event. For a platform event, the topic name is the event name appended with __e, such as MyEvent__e. For a change event, the topic is the name of the change event, such as AccountChangeEvent.
- Position? int - The replay ID of the last event that the subscriber processed.
- Tip? int - The replay ID of the last published event.For high-volume platform events and change events, the value for Tip isn’t available and is always -1.
- Retries? int - The number of times the trigger was retried due to throwing the EventBus.RetryableException. This field applies to Apex triggers only. Available in API version 43.0 and later.
- LastError? string - The error message that the last thrown EventBus.RetryableException contains. This field applies to Apex triggers only. Available in API version 43.0 and later.
- Status? string - Indicates the status of the subscriber. Can be one of the following values: Running—The subscriber is actively listening to events. If you modify the subscriber, the subscription continues to process events. Error— The subscriber was disconnected and stopped receiving published events. A trigger reaches this state when it exceeds the number of maximum retries with the EventBus.RetryableException. Trigger assertion failures and unhandled exceptions don’t cause the error state. We recommend limiting the retries to fewer than nine times to avoid reaching this state. When you fix and save the trigger, or for a managed package trigger, if you redeploy the package, the trigger resumes automatically from the tip, starting from new events. Also, you can resume a trigger subscription in the subscription detail page that you access from the platform event page. Suspended—The subscriber is disconnected and can’t receive events because a Salesforce admin suspended it or due to an internal error. You can resume a trigger subscription in the subscription detail page that you access from the platform event page. To resume a process, deactivate it and then reactivate it. If you modify the subscriber, the subscription resumes automatically from the tip, starting from new events.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- WhoId? string - ID of the associated person (contact or lead)
- WhatId? string - ID of the associated record (account, opportunity, etc.)
- Subject? string - Subject line of the record
- Location? string - Location of the event
- IsAllDayEvent? boolean - Indicates whether this is an all-day event (true) or not (false)
- ActivityDateTime? string - Date and time of the activity
- ActivityDate? string - Date of the activity
- DurationInMinutes? int - Duration in minutes
- Description? string - Description of the record
- AccountId? string - ID of the associated account
- OwnerId? string - ID of the user who owns the record
- IsPrivate? boolean - Indicates whether the record is private (true) or not (false)
- ShowAs? string - How the event shows on the calendar
- IsChild? boolean - Indicates whether the record is child (true) or not (false)
- IsGroupEvent? boolean - Indicates whether the record is group event (true) or not (false)
- GroupEventType? string - Type of the group event
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- RecurrenceActivityId? string - ID of the recurrence activity
- IsRecurrence? boolean - Indicates whether this is a recurring event (true) or not (false)
- RecurrenceStartDateTime? string - Date and time of the recurrence start
- RecurrenceEndDateOnly? string - Recurrence end date only
- RecurrenceTimeZoneSidKey? string - Recurrence time zone sid key
- RecurrenceType? string - Type of the recurrence
- RecurrenceInterval? int - Recurrence interval
- RecurrenceDayOfWeekMask? int - Recurrence day of week mask
- RecurrenceDayOfMonth? int - Recurrence day of month
- RecurrenceInstance? string - Recurrence instance
- RecurrenceMonthOfYear? string - Recurrence month of year
- ReminderDateTime? string - Date and time of the reminder
- IsReminderSet? boolean - Indicates whether a reminder is set (true) or not (false)
- IsRecurrence2Exclusion? boolean - Indicates whether the record is recurrence 2 exclusion (true) or not (false)
- Recurrence2PatternText? string - Recurrence 2 pattern text
- Recurrence2PatternVersion? string - Recurrence 2 pattern version
- ServiceAppointmentId? string - ID of the associated service appointment
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventLogFileSObject
Represents event log files for event monitoring. The event monitoring product gathers information about your Salesforce org’s operational events, which you can use to analyze usage trends and user behavior.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EventType? string - The event type—API, Login, Report, URI, and so forth. Use to determine which files were generated for your org. For the corresponding LogFile schema, see EventLogFile Supported Event Types.
- LogDate? string - The date and time of the log file’s creation. For daily event log files, tracks usage activity for a 24-hour period, from 12:00 a.m. to 11:59 p.m. UTC time. For hourly event log files, indicates the hour in which the log file was generated. For example, for events that occur between 11:00 AM and 12:00 PM on 3/7/2016, this field’s value is 2016-03-07T11:00:00.000Z.For hourly event log files, we recommend using CreatedDate to query the date and time that an EventLogFile object was created.
- LogFileLength? decimal - The log file length in bytes. You can use this field to plan storage needs for your log files.
- LogFileContentType? string - The content type of the log file; always .csv.
- ApiVersion? decimal - The specific API version for this log file. This field is available in API version 30.0 and later.
- Sequence? int - The number for the portion of the event log file data captured in an hour. For 24-hour event log file generation, the value of this field is 0. For hourly event log files, the initial value is 1. This value increases by 1 when events are added in the same hour after the latest event log file is created. The value resets to 1 in the subsequent hour. For example, you have activity between 2:00 and 3:00 PM. Two-log files are generated that contain the event log data for that hour, with Sequence values of 1 and 2. For event log data that occurs at 3:01 PM, the Sequence value resets to 1. This field is available in API version 37.0 and later.
- Interval? string - The generation schedule for the event log file. Possible values are: Daily Hourly This field is available in API version 37.0 and later.
- LogFileFieldNames? string - The ordered list of fields in the log file data. LogFileFieldNames and LogFileFieldTypes are specific to each EventType. For example, LogFileFieldNames has a different value for an API EventType and a Login EventType.
- LogFileFieldTypes? string - The ordered list of field types in the log file data (String, Id, and so forth). LogFileFieldNames and LogFileFieldTypes are specific to each EventType. For example, LogFileFieldTypes has a different value for an API EventType and a Login EventType.
- LogFile? record {} - Encoded file data in .csv format. The EventType field defines the schema for this data.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventRelationChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- RelationId? string - ID of the associated relation
- EventId? string - ID of the associated event
- Status? string - Current status of the record
- RespondedDate? string - Date of the responded
- Response? string - Response
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventRelationSObject
Represents a person (a user, lead, or contact) or a resource (such as a conference room) invited to an event. This object lets you add or remove invitees from an event and use the API to manage invitees’ responses to invitations. If Shared Activities is enabled, EventRelation can also represent other objects that are related to an event. EventRelation does not support triggers, workflow, or data validation rules.
Fields
- Id? string - Unique identifier for the record
- RelationId? string - Contains the ID of the person (User, Contact, or Lead) or the resource invited to an event. When Shared Activities is enabled, RelationId can also contain the ID of an account, opportunity, or other object related to an event.
- EventId? string - Contains the ID of the event. This value can’t be changed after it’s been specified.
- Status? string - Indicates the invitee status with one of the following values: New: Invitee has received the invitation but hasn’t yet responded. This value is the default. Declined: Invitee has declined the invitation. Accepted: Invitee has accepted the invitation. Uninvited and Maybe aren’t currently supported.
- RespondedDate? string - Indicates the most recent date and time when the invitee responded to an invitation to an event.
- Response? string - Contains optional text that the invitee can enter when responding to an invitation to an event.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventRelayConfigChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- EventChannel? string - Event channel
- DestinationResourceName? string - Name of the destination resource
- State? string - State or province of the address
- RelayOption? string - Relay option
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventRelayConfigSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EventChannel? string - Event channel
- DestinationResourceName? string - Name of the destination resource
- State? string - State or province of the address
- RelayOption? string - Relay option
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventRelayFeedbackSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- EventRelayNumber? string - Event relay number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EventRelayConfigId? string - ID of the associated event relay config
- RemoteResource? string - Remote resource
- Status? string - Current status of the record
- ErrorMessage? string - Error message associated with the record
- ErrorTime? string - Error time
- ErrorIdentifier? string - Error identifier
- ErrorCode? string - Error code associated with the record
- LastRelayedEventTime? string - Last relayed event time
- UsageType? string - Type of usage
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: EventSObject
Represents an event in the calendar. In the user interface, event and task records are collectively referred to as activities.
Fields
- Id? string - Unique identifier for the record
- WhoId? string - The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID. The label is Name ID. If Shared Activities is enabled, the value of this field is the ID of the related lead or primary contact. If you add, update, or remove the WhoId field, you might encounter problems with triggers, workflows, and data validation rules that are associated with the record. The label is Name ID. If the JunctionIdList field is used, all WhoIds are included in the relationship list. Beginning in API version 37.0, if the contact or lead ID in the WhoId field is not in the EventWhoIds list, no error occurs and the ID is added to the EventWhoIds as the primary WhoId. If WhoId is set to null, an arbitrary ID from the existing EventWhoIds list is promoted to the primary position.
- WhatId? string - The WhatId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects. WhatIds are polymorphic. Polymorphic means a WhatId is equivalent to the ID of a related object. The label is Related To ID.
- Subject? string - The subject line of the event, such as Call, Email, or Meeting. Limit: 255 characters.
- Location? string - Contains the location of the event.
- IsAllDayEvent? boolean - Indicates whether the ActivityDate field (true) or the ActivityDateTime field (false) is used to define the date or time of the event. Label is All-Day Event. See also DurationInMinutes and EndDateTime.
- ActivityDateTime? string - Contains the event’s due date if the IsAllDayEvent flag is set to false. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate. Label is Due Date Time. This field is required in versions 12.0 and earlier if the IsAllDayEvent flag is set to false. The value for this field and StartDateTime must match, or one of them must be null.
- ActivityDate? string - Contains the event’s due date if the IsAllDayEvent flag is set to true. This field is a date field with a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone. Don’t attempt to alter the timestamp to account for time zone differences. Label is Due Date Only. This field is required in versions 12.0 and earlier if the IsAllDayEvent flag is set to true. The value for this field and StartDateTime must match, or one of them must be null.
- DurationInMinutes? int - Contains the event length, in minutes. Even though this field represents a temporal value, it is an integer type—not a Date/Time type. Required in versions 12.0 and earlier if IsAllDayEvent is false. In versions 13.0 and later, this field is optional, depending on the following: If IsAllDayEvent is true, you can supply a value for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time. If both fields are null, the duration defaults to one day. If IsAllDayEvent is false, a value must be supplied for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time. If the multiday event feature is enabled, then API versions 13.0 and later support values greater than 1440 for the DurationInMinutes field. API versions 12.0 and earlier can’t access event objects whose DurationInMinutes is greater than 1440. For more information, see Multiday Events. Depending on your API version, errors with the DurationInMinutes and EndDateTime fields may appear in different places. Versions 38.0 and before—Errors always appear in the DurationInMinutes field. Versions 39.0 and later—If there’s no value for the DurationInMinutes field, errors appear in the EndDateTime field. Otherwise, they appear in the DurationInMinutes field.
- StartDateTime? string - Indicates the start date and time of the event. Available in versions 13.0 and later. If the Event IsAllDayEvent flag is set to true (indicating that it is an all-day Event), then the event start date information is contained in the StartDateTime field. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate. If the Event IsAllDayEvent flag is set to false (indicating that it is not an all-day event), then the event start date information is contained in the StartDateTime field. The time portion is always transferred in the Coordinated Universal Time (UTC) time zone. You need to translate the time portion to or from a local time zone for the user or the application, as appropriate. If this field has a value, then ActivityDate and ActivityDateTime must either be null or match the value of this field.
- EndDateTime? string - Available in versions 13.0 and later. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate. This field is optional, depending on the following: If IsAllDayEvent is true, you can supply a value for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time. If both fields are null, the duration defaults to one day. If IsAllDayEvent is false, a value must be supplied for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time.Depending on your API version, errors with the DurationInMinutes and EndDateTime fields may appear in different places. Versions 38.0 and before—Errors always appear in the DurationInMinutes field. Versions 39.0 and later—If there’s no value for the DurationInMinutes field, errors appear in the EndDateTime field. Otherwise, they appear in the DurationInMinutes field.
- EndDate? string - Read-only. Available in versions 46.0 and later. This field supplies the date value that appears in the EndDateTime field. This field is a date field with a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone.
- Description? string - Contains a text description of the event. Limit: 32,000 characters.
- AccountId? string - Represents the ID of the related account. The AccountId is determined as follows. If the value of WhatId is any of the following objects, then Salesforce uses that object’s AccountId. Account Opportunity Contract Custom object that is a child of Account If the value of the WhatId field is any other object, and the value of the WhoId field is a contact object, then Salesforce uses that contact’s AccountId. (If your org uses Shared Activities, Salesforce uses the AccountId of the primary contact.) Otherwise, Salesforce sets the value of the AccountId field to null. For information on IDs, see ID Field Type.
- OwnerId? string - Contains the ID of the user or public calendar who owns the event. Label is Assigned to ID.
- IsPrivate? boolean - Indicates whether users other than the creator of the event can (false) or can’t (true) see the event details when viewing the event user’s calendar. However, users with the View All Data or Modify All Data permission can see private events in reports and searches, or when viewing other users’ calendars. Private events can’t be associated with opportunities, accounts, cases, campaigns, contracts, leads, or contacts. Label is Private.
- ShowAs? string - Indicates how this event appears when another user views the calendar: Busy, Out of Office, or Free. Label is Show Time As.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IsChild? boolean - Indicates whether the event is a child of another event (true) or not (false).
- IsGroupEvent? boolean - Indicates whether the event is a group event—that is, whether it has invitees (true) or not (false).
- GroupEventType? string - Read-only. Available in API versions 19.0 and later. The possible values are: 0 (Non–group event)—An event with no invitees. 1 (Group event)—An event with invitees. 2 (Proposed event)—An event created when a user requests a meeting with a contact, lead, or person account using the Salesforce user interface. When the user confirms the meeting, the proposed event becomes a group event. You can’t create, edit, or delete proposed events in the API. This value is no longer used in API version 41.0 and later. 3 (IsRecurrence2 Series Pattern)—An event representing an event series recurrence pattern in Lightning Experience.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsArchived? boolean - Indicates whether the event has been archived.
- RecurrenceActivityId? string - Read-only. Not required on create. Contains the ID of the main record of the Salesforce Classic recurring event. Subsequent occurrences have the same value in this field.
- IsRecurrence? boolean - Indicates whether a Salesforce Classic event is scheduled to repeat itself (true) or only occurs once (false). This is a read-only field when updating records, but not when creating them. If this field value is true, then RecurrenceEndDateOnly, RecurrenceStartDateTime, RecurrenceType, and any recurrence fields associated with the given recurrence type must be populated. Label is Create recurring series of events.
- RecurrenceStartDateTime? string - Indicates the date and time when the Salesforce Classic recurring event begins. The value must precede the RecurrenceEndDateOnly. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate.
- RecurrenceEndDateOnly? string - Indicates the last date on which the event repeats. For multiday Salesforce Classic recurring events, this is the day on which the last occurrence starts. This field is a date field with a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone. Don’t attempt to alter the timestamp to account for time zone differences.
- RecurrenceTimeZoneSidKey? string - Indicates the time zone associated with a Salesforce Classic recurring event. For example, “UTC-8:00” for Pacific Standard Time.
- RecurrenceType? string - Indicates how often the Salesforce Classic event repeats. For example, daily, weekly, or every nth month (where “nth” is defined in RecurrenceInstance).
- RecurrenceInterval? int - Indicates the interval between Salesforce Classic recurring events.
- RecurrenceDayOfWeekMask? int - Indicates the day or days of the week on which the Salesforce Classic recurring event repeats. This field contains a bitmask. The values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64 Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20.
- RecurrenceDayOfMonth? int - Indicates the day of the month on which the event repeats.
- RecurrenceInstance? string - Indicates the frequency of the Salesforce Classic event’s recurrence. For example, 2nd or 3rd.
- RecurrenceMonthOfYear? string - Indicates the month in which the Salesforce Classic recurring event repeats.
- ReminderDateTime? string - Represents the time when the reminder is scheduled to fire, if IsReminderSet is set to true. If IsReminderSet is set to false, then the user may have deselected the reminder checkbox in the Salesforce user interface, or the reminder has already fired at the time indicated by the value.
- IsReminderSet? boolean - Indicates whether the activity is a reminder (true) or not (false).
- EventSubtype? string - Provides standard subtypes to facilitate creating and searching for events. This field isn’t updateable.
- IsRecurrence2Exclusion? boolean - Read-only. This field available in API version 44.0 and later. Indicates when updates to a Lightning Experience event series recurrence pattern have been made, but affect future event occurrences only. For past event occurrences, IsRecurrence2Exclusion is set to true, excluding past occurrences from the series recurrence pattern.
- Recurrence2PatternText? string - Read-only. This field available in API version 44.0 and later. Indicates the recurrence pattern for Lightning Experience event series. Recurrence2PatternText is implemented with RFC 5545 standard specifications for internet calendaring and scheduling. See Event Series section in this topic for usage examples. This field has a maximum length of 512 characters.
- Recurrence2PatternVersion? string - Read-only. This field available in API version 44.0 and later. Indicates the standard specifications for Lightning Experience event series recurrence patterns. The only possible value is 1 (RFC 5545 v4 RRULE)—RFC 5545 is a standard set of specifications for internet calendaring and scheduling that IsRecurrence2 adheres to for series recurrence patterns. RFC 5545 specifications for series recurrence patterns are called rrules. For examples of rrule usage, see the Event Series section in this topic.
- IsRecurrence2? boolean - Read-only. This field available in API version 44.0 and later. Indicates whether a Lightning Experience event is scheduled to repeat (true) or only occurs once (false. If this field value is true, then Recurrence2PatternText and Recurrence2PatternVersion must be populated. Label is Repeat.
- IsRecurrence2Exception? boolean - Read-only. This field available in API version 44.0 and later. Indicates whether an individual event in a Lightning Experience event series has a recurrence pattern that’s different from the rest of the series, making it an exception.
- Recurrence2PatternStartDate? string - Read-only. This field available in API version 44.0 and later. Indicates the date and time when the Lightning Experience event series begins. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate.
- Recurrence2PatternTimeZone? string - This field available in API version 44.0 and later. Indicates the time zone in which the Lightning Experience event series was created or updated. This field uses standard Java TimeZone IDs. For example, America/Los_Angeles.
- ServiceAppointmentId? string - ID of the associated service appointment
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExpressionFilterCriteriaSObject
Represents a condition in an expression that’s used to control the execution of macro instructions.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Optional. A label for the condition.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FilterTarget? string - Required. The target object or field used in the condition. For example, to create a condition that applies to new cases, use Case.Status as the FilterTarget.
- FilterTargetValue? string - Optional. The value that’s compared to the value of the FilterTarget. For example, to create a condition that applies to new cases, use New as the FilterTargetValue.
- Operation? string - Required. Specifies the operator used to compare the target field and the target value. For example, to create a condition that applies to new cases, use EQUALS for the Operation field, as in Case.Status EQUALS New. EQUALS NOTEQUALS CONTAINS NOTCONTAIN
- SortOrder? int - Required. The order in which the criteria are evaluated.
- ExpressionFilterId? string - Required. The ID of the ExpressionFilter object that references this condition.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExpressionFilterSObject
Represents a logical expression that’s used to control the execution of macro instructions.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Optional. A label for the expression.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FilterConditionLogic? string - Optional. The filter conditions to use and the order in which to apply them. For example, ‘1 AND 2’ evaluates condition 1 and then condition 2.
- ContextId? string - Required. The ID of the MacroInstruction object that contains the expression.
- FilterDescription? string - Optional. A description of the filter expression that helps to explain the logic to users. For example, ‘Applies to New cases.’
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExpressionSetViewSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- Name? string - Name of the record
- Description? string - Description of the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- IsTemplate? boolean - Indicates whether the record is template (true) or not (false)
- LastModifiedBy? string - Last modified by
- LastModifiedDate? string - Date and time when the record was last modified
- ExpressionSetDetails? string - Expression set details
- IsExecutable? boolean - Indicates whether the record is executable (true) or not (false)
- UsageType? string - Type of usage
- HasContextDefinitionRef? boolean - Indicates whether the record has context definition ref (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExternalDataSourceSObject
Represents an external data source, which defines connection details for integration with data and content that are stored outside the Salesforce org.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - The language of the MasterLabel.
- MasterLabel? string - Master label for the external data source. This internal label doesn’t get translated.
- NamespacePrefix? string - The namespace prefix that is associated with this object. Each Developer Edition org that creates a managed package has a unique namespace prefix. Limit: 15 characters. You can refer to a component in a managed package by using the namespacePrefix__componentName notation.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Type? string - Specifies the adapter that connects to the external system.
- Endpoint? string - The URL of the external system, or if that URL is defined in a named credential, the named credential URL.
- Repository? string - Used for SharePoint Online. An optional name of the repository in the data source. Not applicable to all data source types.
- IsWritable? boolean - Indicates whether the record is writable (true) or not (false)
- PrincipalType? string - Specifies whether the org uses one set (NamedUser), multiple sets (PerUser), or no (Anonymous) credentials to access the external system. Each set of credentials corresponds to a login account on the external system. Corresponds to Identity Type in the user interface.
- Protocol? string - Specifies whether to use OAuth, password authentication, or no authentication to access the external system.
- AuthProviderId? string - Salesforce ID of the authentication provider, which defines the service that provides the login process and approves access to the external system. Only users with the “Customize Application” and “Manage AuthProviders” permissions can view this field. This field is available in API version 39.0 and later.
- LargeIconId? string - ID of the associated large icon
- SmallIconId? string - ID of the associated small icon
- CustomConfiguration? string - A JSON-encoded configuration string that defines parameters specific to the type of external data source.
- NamedCredentialId? string - ID of the associated named credential
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExternalDataSrcDescriptorSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ExternalDataSourceId? string - ID of the associated external data source
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Type? string - Type or category of the record
- SystemVersion? int - System version
- DescriptorVersion? string - Descriptor version
- Subtype? string - Subtype
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExternalDataUserAuthSObject
Stores authentication settings for a Salesforce user to access an external system. The external system must be defined in an external data source or a named credential that’s configured to use per-user authentication.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExternalDataSourceId? string - Salesforce ID of the external data source or named credential that defines the external system.
- UserId? string - ID of the Salesforce user who’s accessing the external system.
- Protocol? string - Specifies whether to use OAuth, password authentication, or no authentication when the user accesses the external system.
- Username? string - Username portion of the credentials for the Salesforce user to access the external system.
- Password? string - Password portion of the credentials for the Salesforce user to access the external system.
- AuthProviderId? string - Salesforce ID of the authentication provider, which defines the service that provides the login process and approves access to the external system. Only users with the “Customize Application” and “Manage AuthProviders” permissions can view this field. This field is available in API version 39.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExternalEventMappingShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExternalEventMappingSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExternalId? string - External identifier for the record
- EventId? string - ID of the associated event
- StartDate? string - Start date of the record
- EndDate? string - End date of the record
- IsRecurring? boolean - Indicates whether the record is recurring (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ExternalEventSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExternalId? string - External identifier for the record
- Title? string - Title of the feed item
- Location? string - Location of the event
- Notes? string - Notes
- Time? string - Time
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedAttachmentSObject
Represents an attachment to a feed item, such as a file attachment or a link. Use FeedAttachment to add various attachments to one feed item.
Fields
- Id? string - Unique identifier for the record
- FeedEntityId? string - The ID of the associated feed entity that contains this attachment.
- Type? string - The type of this feed attachment. Valid values are: 0 Content—A content attachment. 1 InlineImage—An inline image. The system creates an inline image attachment when an image is added to the body of the associated FeedItem. You can’t add an inline image directly using FeedAttachment. 2 Link—A link. 3 FeedEntity—A feed entity, for example, a post that is shared. Available in API version 39 and later in Lightning Experience. 4 ChatterExtension—a Rich Publisher App that’s integrated with the Chatter publisher. 5 Record—A record.
- RecordId? string - The ID of the record that this feed attachment contains. For inline images, RecordId is a ContentDocument ID. For content attachments, RecordId is a ContentVersion ID, For feed items, RecordId is a FeedItem ID.
- Title? string - The title of this feed attachment. When Type is Link, Title value is the label for the attachment link. Otherwise, Title value isn’t used.
- Value? string - The string value of this FeedAttachment. This field is optional. If the feed attachment is a Link FeedAttachment, the value is the link URL string.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedCommentSObject
Represents a comment added to a feed by a user.
Fields
- Id? string - Unique identifier for the record
- FeedItemId? string - ID of the feed item containing the comment.
- ParentId? string - ID of a record associated with the feed comment. For example, if you are commenting on a change to a field on Account, ParentId is set to the account ID.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- SystemModstamp? string - Date and time when a user or automated process (such as a trigger) last modified this record. In this context, "trigger" refers to Salesforce code that runs to implement standard functionality, and not an Apex trigger. SystemModstamp is a read-only system field, available in FeedComment as of API version 37.0.
- Revision? int - The number of times the comment was revised.
- LastEditById? string - ID of the user who last edited the feed comment.
- LastEditDate? string - The date the feed comment was last edited.
- CommentBody? string - The text in the comment.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InsertedById? string - ID of the user who added this item to the feed. For example, if an application migrates posts and comments from another application into a feed, the InsertedBy value is set to the ID of the context user.
- CommentType? string - The type of comment: ContentComment—an uploaded file on a comment TextComment—a direct text entry on a comment Before API version 24.0, a text entry was required on a comment. As of version 24.0, a text entry is optional if the CommentType is ContentComment.
- RelatedRecordId? string - ID of the ContentVersion record associated with a ContentComment. This field is null for all comments except ContentComment. For example, set this field to an existing ContentVersion ID and set the CommentType to ContentComment.
- IsRichText? boolean - Indicates whether the feed CommentBody contains rich text. If you post a rich text feed comment using SOAP API, set IsRichText to true and escape HTML entities from the body. Otherwise, the comment is rendered as plain text. Rich text supports the following HTML tags: <p>Though the <br> tag isn’t supported, you can use <p> </p> to create lines. <a> <b> <code> <i> <u> <s> <ul> <ol> <li> <img> The <img> tag is accessible only through the API and must reference files in Salesforce similar to this example: <img src="sfdc://069B0000000omjh"></img> This attribute is available as of API version 38.0. In API version 38.0 and later, the system replaces special characters in rich text with escaped HTML. In API version 37.0 and prior, all rich text appears as a plain-text representation.
- IsVerified? boolean - Determines whether a comment on a question is marked as Company Verified. This field is available in API version 41.0 and later.
- HasEntityLinks? boolean - Indicates whether the feed CommentBody includes at least one link to a record.This field is available starting in API version 43.0.
- Status? string - Specifies whether this feed comment is published and visible to all who can access the parent feed item. To change a comment’s status, the comment’s parent feed item must be in a published state. This field is available in API version 38.0 and later.
- ThreadParentId? string - The identifier of the feed item that is the parent of this comment. This field is available on the object when Allow discussion threads is selected in the Administration Workspace. This field is available in API version 44.0 and later.
- ThreadLevel? int - The identifier that shows the level of this Feed Comment in a thread. By default, there are a maximum of three levels in a thread. The ThreadLevel value shows in which of the three levels this comment falls. This field is available on the object when Allow discussion threads is selected in the Administration Workspace. This field is available in API version 44.0 and later.
- ThreadChildrenCount? int - The count of comments associated with this parent feed object. The feed object can be either a Feed Item or a Feed Comment. The count shows how many comments are directly subordinate to the parent. This field is available on the object when Allow discussion threads is selected in the Administration Workspace. This field is available in API version 44.0 and later.
- ThreadLastUpdatedDate? string - The date and time the thread on this comment was last updated. This field is available on the object when Allow discussion threads is selected in the Administration Workspace. This field is available in API version 44.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedItemSObject
FeedItem represents an entry in the feed, such as changes in a record feed, including text posts, link posts, and content posts.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the object type to which the feed item is related. For example, set this field to a UserId to post to someone’s profile feed, or an AccountId to post to a specific account.
- Type? string - The type of feed item. Except for ContentPost, LinkPost, and TextPost, don’t create feed items of other types directly from the API. ActivityEvent—indirectly generated event when a user or the API adds a Task associated with a feed-enabled parent record (excluding email tasks on cases). Also occurs when a user or the API adds or updates a Task or Event associated with a case record (excluding email and call logging). For a recurring Task with CaseFeed disabled, one event is generated for the series only. For a recurring Task with CaseFeed enabled, events are generated for the series and each occurrence. AdvancedTextPost—created when a user posts a group announcement and, in Lightning Experience as of API version 39.0 and later, when a user shares a post. AnnouncementPost—Not used. ApprovalPost—generated when a user submits an approval. BasicTemplateFeedItem—Not used. CanvasPost—a post made by a canvas app posted on a feed. CollaborationGroupCreated—generated when a user creates a public group. CollaborationGroupUnarchived—Not used. ContentPost—a post with an attached file. CreatedRecordEvent—generated when a user creates a record from the publisher. DashboardComponentAlert—generated when a dashboard metric or gauge exceeds a user-defined threshold. DashboardComponentSnapshot—created when a user posts a dashboard snapshot on a feed. LinkPost—a post with an attached URL. PollPost—a poll posted on a feed. ProfileSkillPost—generated when a skill is added to a user’s Chatter profile. QuestionPost—generated when a user posts a question. ReplyPost—generated when Chatter Answers posts a reply. RypplePost—generated when a user creates a Thanks badge in WDC. TextPost—a direct text entry on a feed. TrackedChange—a change or group of changes to a tracked field. UserStatus—automatically generated when a user adds a post. Deprecated. The following values appear in the Type picklist for all feed objects but apply only to CaseFeed: AttachArticleEvent—generated event when a user attaches an article to a case. CallLogPost—generated event when a user logs a call for a case through the user interface. CTI calls also generate this event. CaseCommentPost—generated event when a user adds a case comment for a case object. ChangeStatusPost—generated event when a user changes the status of a case. ChatTranscriptPost—generated event when Chat transcript is saved to a case. EmailMessageEvent—generated event when an email related to a case object is sent or received. FacebookPost—generated when a Facebook post is created from a case. Deprecated. MilestoneEvent—generated when a case milestone is completed or reaches violation status. SocialPost—generated when a social post is created from a case. If you set Type to ContentPost, also specify ContentData and ContentFileName.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Standard system field. Indicates whether the record has been moved to the Recycle Bin (true) or not (false).
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Revision? int - The revision number of the feed item.
- LastEditById? string - ID of the user who last edited the feed item.
- LastEditDate? string - The date the feed item was last edited.
- CommentCount? int - The number of comments associated with this feed item.
- LikeCount? int - The number of likes associated with this feed item.
- Title? string - The title of the feed item. When the Type is LinkPost, the LinkUrl is the URL and this field is the link name. The Title field can be updated on posts of Type QuestionPost.
- Body? string - The body of the feed item. Required when Type is TextPost or AdvancedTextPost. Optional when Type is ContentPost or LinkPost.
- LinkUrl? string - The URL of a LinkPost.
- IsRichText? boolean - Indicates whether the feed item Body contains rich text. If you post a rich text feed comment using SOAP API, set IsRichText to true and escape HTML entities from the body. Otherwise, the post is rendered as plain text. Rich text supports the following HTML tags: <p>Though the <br> tag isn’t supported, you can use <p> </p> to create lines. <a> <b> <code> <i> <u> <s> <ul> <ol> <li> <img> The <img> tag is accessible only through the API and must reference files in Salesforce similar to this example: <img src="sfdc://069B0000000omjh"></img> In API version 35.0 and later, the system replaces special characters in rich text with escaped HTML. In API version 34.0 and prior, all rich text appears as a plain-text representation.
- RelatedRecordId? string - ID of the ContentVersion record associated with a ContentPost. For WDC thanks posts, it’s the ID of the WorkThanks object associated with a RypplePost. This field is typically null for all posts except ContentPost and RypplePost. For example, set this field to an existing ContentVersion ID and post it to a feed with Type set to ContentPost.
- InsertedById? string - ID of the user who added this item to the feed. For example, if an application migrates posts and comments from another application into a feed, the InsertedBy value is set to the ID of the context user.
- BestCommentId? string - The ID of the comment marked as best answer on a question post.
- HasContent? boolean - Indicates whether the feed item has content.
- HasLink? boolean - Indicates whether the feed item has a link attached.
- HasFeedEntity? boolean - Indicates whether the feed item has a feed entity, for example, a post, as an attachment. Available in API version 39 and later when sharing a feed entity in Lightning Experience.
- HasVerifiedComment? boolean - Determines whether a question has an answer that is marked as Company Verified. This field is available in API version 41.0 and later.
- IsClosed? boolean - As of API version 43, a read-only field that indicates whether the feed item is open or closed to new actions. A value of true places restrictions on the actions a user can take on a feed item and its comments. For more information, see the Usage section.
- Status? string - Specifies whether this feed item is published and visible to all who can access the feed. This field is available in API version 37.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedLikeSObject
Indicates that a user has liked a feed item.
Fields
- Id? string - Unique identifier for the record
- FeedItemId? string - ID of the feed item that the user liked.
- FeedEntityId? string - The ID of a feed item or feed comment the user liked. If the user liked a comment, FeedEntityId is set to the ID of the comment. If the user liked a feed item, FeedEntityId is set to the ID of the feed item. This field is optional. The default value is the ID of the feed item.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InsertedById? string - ID of the user who added this item to the feed. For example, if an application migrates posts and comments from another application into a feed, the InsertedBy value is set to the ID of the context user.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedPollChoiceSObject
Shows the choices for a poll posted in the feed.
Fields
- Id? string - Unique identifier for the record
- FeedItemId? string - ID of the feed item for the poll.
- Position? int - Shows the position of the poll choice.
- ChoiceBody? string - A choice in the poll.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedPollVoteSObject
Shows how users voted on a poll posted in the feed.
Fields
- Id? string - Unique identifier for the record
- FeedItemId? string - ID of the feed item for the poll.
- ChoiceId? string - Indicates which choice a user selected on a poll posted in a feed.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedRevisionSObject
Holds the revision history of a specific feed item or comment, including a list of attributes that changed for each revision.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false). This field is a standard system field.
- FeedEntityId? string - Identifies the modified feed item or comment.
- Revision? int - The revision number of the feed item or comment.
- Action? string - Holds the type of modification to the underlying feed item or comment attribute. Action can have the value Changed.
- EditedAttribute? string - Identifies the part of the feed item or comment which was modified. A single revision can have many edited attributes.
- Value? string - Identifies the value of the EditedAttribute field before the update.
- IsValueRichText? boolean - Indicates whether the record is value rich text (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedSignalSObject
Fields
- Id? string - Unique identifier for the record
- FeedItemId? string - ID of the associated feed item
- FeedEntityId? string - ID of the associated feed entity
- SignalValue? int - Signal value
- SignalType? string - Type of the signal
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InsertedById? string - ID of the user who inserted the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FeedTrackedChangeSObject
Represents an individual field change or set of field changes. A FeedTrackedChange is a child object of a record feed, such as AccountFeed.
Fields
- Id? string - Unique identifier for the record
- FeedItemId? string - ID of the parent feed that tracks the field change.
- FieldName? string - The name of the field that was changed.This field also tracks other events that are not related to an individual field for a parent feed. These events occur as the parent record advances through its pipeline. For example, a value of leadConverted indicates that a lead has been converted to an opportunity. For a full list of values, see Tracking of Special Events.
- OldValue? string - The last value of the field before it was changed.
- NewValue? string - The new value of the field that was changed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FieldDefinitionSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- QualifiedApiName? string - Name of the qualified API
- EntityDefinitionId? string - ID of the associated entity definition
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- DeveloperName? string - Unique developer name for the record
- MasterLabel? string - Master label for the record
- Label? string - Display label for the record
- Length? int - Length
- DataType? string - Data type of the field that was changed
- ServiceDataTypeId? string - ID of the associated service data type
- ValueTypeId? string - ID of the associated value type
- ExtraTypeInfo? string - Extra type info
- IsCalculated? boolean - Indicates whether the record is calculated (true) or not (false)
- IsHighScaleNumber? boolean - Indicates whether the record is high scale number (true) or not (false)
- IsHtmlFormatted? boolean - Indicates whether the record is HTML formatted (true) or not (false)
- IsNameField? boolean - Indicates whether the record is name field (true) or not (false)
- IsNillable? boolean - Indicates whether the record is nillable (true) or not (false)
- IsWorkflowFilterable? boolean - Indicates whether the record is workflow filterable (true) or not (false)
- IsCompactLayoutable? boolean - Indicates whether the record is compact layoutable (true) or not (false)
- Precision? int - Precision
- Scale? int - Scale
- IsFieldHistoryTracked? boolean - Indicates whether the record is field history tracked (true) or not (false)
- IsIndexed? boolean - Indicates whether the record is indexed (true) or not (false)
- IsApiFilterable? boolean - Indicates whether the record is API filterable (true) or not (false)
- IsApiSortable? boolean - Indicates whether the record is API sortable (true) or not (false)
- IsListFilterable? boolean - Indicates whether the record is list filterable (true) or not (false)
- IsListSortable? boolean - Indicates whether the record is list sortable (true) or not (false)
- IsApiGroupable? boolean - Indicates whether the record is API groupable (true) or not (false)
- IsListVisible? boolean - Indicates whether the record is list visible (true) or not (false)
- ControllingFieldDefinitionId? string - ID of the associated controlling field definition
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- PublisherId? string - ID of the associated publisher
- RunningUserFieldAccessId? string - ID of the associated running user field access
- RelationshipName? string - Name of the relationship
- ReferenceTo? record {} - Reference to
- ReferenceTargetField? string - Reference target field
- IsCompound? boolean - Indicates whether the record is compound (true) or not (false)
- IsSearchPrefilterable? boolean - Indicates whether the record is search prefilterable (true) or not (false)
- IsPolymorphicForeignKey? boolean - Indicates whether the record is polymorphic foreign key (true) or not (false)
- IsAiPredictionField? boolean - Indicates whether the record is AI prediction field (true) or not (false)
- BusinessOwnerId? string - ID of the associated business owner
- BusinessStatus? string - Status of the business
- SecurityClassification? string - Security classification
- ComplianceGroup? string - Compliance group
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FieldPermissionsSObject
Represents the enabled field permissions for the parent PermissionSet.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - The Id of the field’s parent PermissionSet.
- SobjectType? string - The object’s API name. For example, Merchandise__c.
- Field? string - The field’s API name. This name must be prefixed with the SobjectType. For example, Merchandise__c.Description__c
- PermissionsEdit? boolean - If true, users assigned to the parent PermissionSet can edit this field. Requires PermissionsRead for the same field to be true.
- PermissionsRead? boolean - If true, users assigned to the parent PermissionSet can view this field. A FieldPermissions record must have at minimum PermissionsRead set to true, or it will be deleted.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FieldSecurityClassificationSObject
Represents a field’s data sensitivity value selected from the SecurityClassification picklist.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - The data sensitivity picklist value. Default values: Public Internal Confidential Restricted MissionCritical
- ApiName? string - The API name of the data sensitivity picklist value. Default values: Public Internal Confidential Restricted MissionCritical
- SortOrder? int - The value’s position in the picklist.
- Description? string - The description of the data sensitivity picklist value.
- IsHighRiskLevel? boolean - Indicates that fields with this picklist value contain data highly sensitive to your company.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FileEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- DocumentId? string - ID of the associated document
- VersionId? string - ID of the associated version
- FileName? string - Name of the file
- FileType? string - Type of the file
- ContentSize? int - Content size
- CanDownloadPdf? boolean - Indicates whether the record can download pdf (true) or not (false)
- VersionNumber? string - Version number of the record
- ProcessDuration? decimal - Process duration
- IsLatestVersion? boolean - Indicates whether the record is latest version (true) or not (false)
- FileSource? string - File source
- FileAction? string - File action
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FileEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- DocumentId? string - ID of the associated document
- VersionId? string - ID of the associated version
- FileName? string - Name of the file
- FileType? string - Type of the file
- ContentSize? int - Content size
- CanDownloadPdf? boolean - Indicates whether the record can download pdf (true) or not (false)
- VersionNumber? string - Version number of the record
- ProcessDuration? decimal - Process duration
- IsLatestVersion? boolean - Indicates whether the record is latest version (true) or not (false)
- FileSource? string - File source
- FileAction? string - File action
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FileSearchActivitySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- SearchTerm? string - Search term
- QueryDate? string - Date of the query
- CountQueries? int - Count queries
- CountUsers? int - Count users
- AvgNumResults? decimal - Avg num results
- Period? string - Period
- QueryLanguage? string - Query language
- ClickRank? decimal - Click rank
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FinanceBalanceSnapshotChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- FinanceBalanceSnapshotNumber? string - Finance balance snapshot number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- FinanceTransactionId? string - ID of the associated finance transaction
- ReferenceEntityId? string - ID of the reference entity
- ReferenceEntityType? string - Type of the reference entity
- EventType? string - Type of the event
- ChargeAmount? decimal - Charge amount
- AdjustmentAmount? decimal - Adjustment amount applied to the record
- Subtotal? decimal - Subtotal amount before adjustments and tax
- TaxAmount? decimal - Tax amount for the record
- TotalAmountWithTax? decimal - Total amount including tax
- ImpactAmount? decimal - Impact amount for the record
- Balance? decimal - Balance
- AccountId? string - ID of the associated account
- TransactionDate? string - Date of the transaction
- EffectiveDate? string - Date when the record becomes effective
- DueDate? string - Due date for the record
- BaseCurrencyIsoCode? string - Base currency iso code
- BaseCurrencyFxRate? decimal - Base currency fx rate
- BaseCurrencyFxDate? string - Date of the base currency fx
- BaseCurrencyAmount? decimal - Base currency amount
- BaseCurrencyBalance? decimal - Base currency balance
- LegalEntityId? string - ID of the associated legal entity
- OriginalReferenceEntityType? string - Type of the original reference entity
- OriginalEventType? string - Type of the original event
- FinanceSystemTransactionNumber? string - Finance system transaction number
- FinanceSystemName? string - Name of the finance system
- FinanceSystemIntegrationMode? string - Finance system integration mode
- FinanceSystemIntegrationStatus? string - Status of the finance system integration
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FinanceBalanceSnapshotShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FinanceBalanceSnapshotSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- FinanceBalanceSnapshotNumber? string - Finance balance snapshot number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- FinanceTransactionId? string - ID of the associated finance transaction
- ReferenceEntityId? string - ID of the reference entity
- ReferenceEntityType? string - Type of the reference entity
- EventType? string - Type of the event
- ChargeAmount? decimal - Charge amount
- AdjustmentAmount? decimal - Adjustment amount applied to the record
- Subtotal? decimal - Subtotal amount before adjustments and tax
- TaxAmount? decimal - Tax amount for the record
- TotalAmountWithTax? decimal - Total amount including tax
- ImpactAmount? decimal - Impact amount for the record
- Balance? decimal - Balance
- AccountId? string - ID of the associated account
- TransactionDate? string - Date of the transaction
- EffectiveDate? string - Date when the record becomes effective
- DueDate? string - Due date for the record
- BaseCurrencyIsoCode? string - Base currency iso code
- BaseCurrencyFxRate? decimal - Base currency fx rate
- BaseCurrencyFxDate? string - Date of the base currency fx
- BaseCurrencyAmount? decimal - Base currency amount
- BaseCurrencyBalance? decimal - Base currency balance
- LegalEntityId? string - ID of the associated legal entity
- OriginalReferenceEntityType? string - Type of the original reference entity
- OriginalEventType? string - Type of the original event
- FinanceSystemTransactionNumber? string - Finance system transaction number
- FinanceSystemName? string - Name of the finance system
- FinanceSystemIntegrationMode? string - Finance system integration mode
- FinanceSystemIntegrationStatus? string - Status of the finance system integration
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FinanceTransactionChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- FinanceTransactionNumber? string - Finance transaction number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ReferenceEntityId? string - ID of the reference entity
- ReferenceEntityType? string - Type of the reference entity
- EventAction? string - Event action
- EventType? string - Type of the event
- ChargeAmount? decimal - Charge amount
- AdjustmentAmount? decimal - Adjustment amount applied to the record
- Subtotal? decimal - Subtotal amount before adjustments and tax
- TaxAmount? decimal - Tax amount for the record
- TotalAmountWithTax? decimal - Total amount including tax
- ImpactAmount? decimal - Impact amount for the record
- ResultingBalance? decimal - Resulting balance
- AccountId? string - ID of the associated account
- SourceEntityId? string - ID of the associated source entity
- DestinationEntityId? string - ID of the associated destination entity
- TransactionDate? string - Date of the transaction
- EffectiveDate? string - Date when the record becomes effective
- DueDate? string - Due date for the record
- BaseCurrencyIsoCode? string - Base currency iso code
- BaseCurrencyFxRate? decimal - Base currency fx rate
- BaseCurrencyFxDate? string - Date of the base currency fx
- BaseCurrencyAmount? decimal - Base currency amount
- BaseCurrencyBalance? decimal - Base currency balance
- LegalEntityId? string - ID of the associated legal entity
- CreationMode? string - Creation mode
- ParentReferenceEntityId? string - ID of the associated parent reference entity
- OriginalReferenceEntityType? string - Type of the original reference entity
- OriginalEventType? string - Type of the original event
- OriginalEventAction? string - Original event action
- OriginalCreditGlAccountName? string - Name of the original credit gl account
- OriginalCreditGlAccountNumber? string - Original credit gl account number
- OriginalDebitGlAccountName? string - Name of the original debit gl account
- OriginalDebitGlAccountNumber? string - Original debit gl account number
- OriginalFinancePeriodName? string - Name of the original finance period
- OriginalFinancePeriodStartDate? string - Date of the original finance period start
- OriginalFinancePeriodEndDate? string - Date of the original finance period end
- OriginalFinancePeriodStatus? string - Status of the original finance period
- OriginalGlRuleName? string - Name of the original gl rule
- OriginalGlTreatmentName? string - Name of the original gl treatment
- OriginalFinanceBookName? string - Name of the original finance book
- FinanceSystemTransactionNumber? string - Finance system transaction number
- FinanceSystemName? string - Name of the finance system
- FinanceSystemIntegrationMode? string - Finance system integration mode
- FinanceSystemIntegrationStatus? string - Status of the finance system integration
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FinanceTransactionShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FinanceTransactionSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- FinanceTransactionNumber? string - Finance transaction number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- ReferenceEntityId? string - ID of the reference entity
- ReferenceEntityType? string - Type of the reference entity
- EventAction? string - Event action
- EventType? string - Type of the event
- ChargeAmount? decimal - Charge amount
- AdjustmentAmount? decimal - Adjustment amount applied to the record
- Subtotal? decimal - Subtotal amount before adjustments and tax
- TaxAmount? decimal - Tax amount for the record
- TotalAmountWithTax? decimal - Total amount including tax
- ImpactAmount? decimal - Impact amount for the record
- ResultingBalance? decimal - Resulting balance
- AccountId? string - ID of the associated account
- SourceEntityId? string - ID of the associated source entity
- DestinationEntityId? string - ID of the associated destination entity
- TransactionDate? string - Date of the transaction
- EffectiveDate? string - Date when the record becomes effective
- DueDate? string - Due date for the record
- BaseCurrencyIsoCode? string - Base currency iso code
- BaseCurrencyFxRate? decimal - Base currency fx rate
- BaseCurrencyFxDate? string - Date of the base currency fx
- BaseCurrencyAmount? decimal - Base currency amount
- BaseCurrencyBalance? decimal - Base currency balance
- LegalEntityId? string - ID of the associated legal entity
- CreationMode? string - Creation mode
- ParentReferenceEntityId? string - ID of the associated parent reference entity
- OriginalReferenceEntityType? string - Type of the original reference entity
- OriginalEventType? string - Type of the original event
- OriginalEventAction? string - Original event action
- OriginalCreditGlAccountName? string - Name of the original credit gl account
- OriginalCreditGlAccountNumber? string - Original credit gl account number
- OriginalDebitGlAccountName? string - Name of the original debit gl account
- OriginalDebitGlAccountNumber? string - Original debit gl account number
- OriginalFinancePeriodName? string - Name of the original finance period
- OriginalFinancePeriodStartDate? string - Date of the original finance period start
- OriginalFinancePeriodEndDate? string - Date of the original finance period end
- OriginalFinancePeriodStatus? string - Status of the original finance period
- OriginalGlRuleName? string - Name of the original gl rule
- OriginalGlTreatmentName? string - Name of the original gl treatment
- OriginalFinanceBookName? string - Name of the original finance book
- FinanceSystemTransactionNumber? string - Finance system transaction number
- FinanceSystemName? string - Name of the finance system
- FinanceSystemIntegrationMode? string - Finance system integration mode
- FinanceSystemIntegrationStatus? string - Status of the finance system integration
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FiscalYearSettingsSObject
Settings to define a custom or standard fiscal year for your organization. This object has a parent-child relationship with the Period object.
Fields
- Id? string - Unique identifier for the record
- PeriodId? string - ID of the associated fiscal period.
- StartDate? string - Start date of the fiscal year.
- EndDate? string - End date of the fiscal year.
- Name? string - A name for the fiscal year. Limit: 80 characters.
- IsStandardYear? boolean - Indicates whether the fiscal year is a standard calendar year (true) or a custom fiscal year (false).
- YearType? string - Indicates one of two types of fiscal years, Standard or Custom. Standard denotes the standard Gregorian calendar, while Custom means a fiscal year with a custom structure.
- QuarterLabelScheme? string - The numbering scheme used for fiscal quarters.
- PeriodLabelScheme? string - The numbering scheme used for fiscal periods.
- WeekLabelScheme? string - The numbering scheme used for weeks.
- QuarterPrefix? string - The prefix of fiscal quarters. For example, if “Q” is the prefix, then the fourth quarter would be “Q4.”
- PeriodPrefix? string - The prefix of fiscal periods. For example, if p is the prefix, then the first period is “P1.”
- WeekStartDay? int - The name of the day that starts the week, for example Monday or Sunday
- Description? string - Description of the setting.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlexQueueItemSObject
Represents an asynchronous Apex job in the Apex flex queue. Provides information about the job type and flex queue position of the AsyncApexJob.
Fields
- Id? string - Unique identifier for the record
- FlexQueueItemId? string - The primary key for this FlexQueueItem.
- JobType? string - The type of the job. Valid values are: ApexToken BatchApex BatchApexWorker Future Queueable ScheduledApex SharingRecalculation TestRequest TestWorker Currently, queries are supported only on BatchApex jobs.
- AsyncApexJobId? string - The ID of an that’s waiting in the flex queue.
- JobPosition? int - The position in the flex queue of the waiting job. The highest-priority job in the queue is at position 0.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowDefinitionViewSObject
Represents the description of a flow definition.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - The ID of the flow definition.
- ApiName? string - The API name of the flow definition.
- Label? string - The label of the flow definition.
- Description? string - Flow definition information, specified by the org’s admin.
- ProcessType? string - The type of the flow. Valid values are:Appointments—A flow for Lightning Scheduler. This value is available in API version 44.0 and later. AutoLaunchedFlow—A flow that doesn’t require user interaction. CheckoutFlow—A flow used in Lightning B2B Commerce to create a checkout in a store. This value is available in API version 48.0 and later. ContactRequestFlow—A flow that lets customers request that customer support get back to them. This flow is used to create contact request records. This value is available in API version 45.0 and later. CustomerLifecycle—A Salesforce Surveys flow that lets you associate survey questions with different stages in customer lifecycles. This value is available in API version 49.0 and later and only when the Customer Lifecycle Designer license is enabled. CustomEvent—A process that is invoked when it receives a platform event message. In the UI, it’s an event process. This value is available in API version 41.0 and later. FieldServiceMobile—A flow for the Field Service mobile app. This value is available in API version 39.0 and later. FieldServiceWeb—A flow for embedded Appointment Booking. Its UI label is Field Service Embedded Flow. This value is available in API version 41.0 and later. Flow—A flow that requires user interaction because it contains one or more screens or local actions, choices, or dynamic choices. In the UI and Salesforce Help, it’s a screen flow. Screen flows can be launched from the UI, such as with a flow action, Lightning page, or web tab. FSCLending— A flow for Financial Services Cloud Mortgage. This value is available in API version 46.0 and later. FSCLending—A flow for login. This value is available in API version 51.0 and later. InvocableProcess—A process that can be invoked by another process or the Invocable Actions resource in REST API. This value is available in API version 38.0 and later. Survey—A flow for Salesforce Surveys. From the UI, this type of flow is created in Survey Builder. This value is available in API version 42.0 and later. SurveyEnrich—A Salesforce Surveys flow that uses the Survey Data Mapper. From the UI, this type of flow is created in the Survey Builder and requires an associated survey flow type. This value is available in API version 49.0 or later and only when the Customer Lifecycle Designer license is enabled. Workflow—A process that is invoked when a record is created or edited. In the UI and Salesforce Help, it’s a record change process. These values are reserved for future use. ActionCadenceFlow ActionPlan AppProcess CartAsyncFlow DigitalForm Journey JourneyBuilderIntegration LoginFlow ManagedContentFlow OrchestrationFlow RecommendationStrategy SalesEntryExperienceFlow TransactionSecurityFlow UserProvisioningFlowThis value has significant impact on validation when saving the flow and on the flow’s runtime behavior. Don’t change this value unless you understand the flow properties of the specified type.
- TriggerType? string - Specifies what causes the flow to run. If you exclude this field, the flow has no trigger and starts only when a user or app launches the flow. Valid value is: PlatformEvent—The flow starts when a platform event message is received. This value is available in API version 49.0 and later. RecordAfterSave—The flow starts after a record is saved. This value is available in API version 49.0 and later. RecordBeforeSave—Creating and/or updating a record triggers an autolaunched flow to make additional updates to that record before it's saved to the database. This value is available in API version 48.0 and later. Scheduled—The flow starts at the scheduled time. This value is available in API version 47.0 and later.
- NamespacePrefix? string - The namespace prefix associated with the flow definition.
- ActiveVersionId? string - The ID of the active flow version.
- LatestVersionId? string - The ID of the latest flow version, regardless of the flow’s status.
- LastModifiedBy? string - Name of the user who last updated this flow definition.
- IsActive? boolean - Indicates whether the latest version of the flow definition is the active flow version.
- IsOutOfDate? boolean - Indicates whether the active flow version is the latest version of the flow definition.
- LastModifiedDate? string - Date and time when the record was last modified
- IsTemplate? boolean - Indicates whether the process or flow is a template. When installed from managed packages, processes and flows can’t be viewed or cloned by subscribers because of intellectual property (IP) protection. But when those processes and flows are templates, subscribers can open them in a builder, clone them, and customize the clones.
- IsOverridable? boolean - Indicates whether the record is overridable (true) or not (false)
- OverriddenById? string - ID of the associated overridden by
- SourceTemplateId? string - ID of the associated source template
- OverriddenFlowId? string - ID of the associated overridden flow
- IsSwingFlow? boolean - Indicates whether the flow is built with Desktop Flow Designer.
- Builder? string - The name of the tool that created this flow. Possible values are: Cloud Flow Designer Flow Builder Swing Designer
- ManageableState? string - Indicates the manageable state of the flow that is contained in a package. Possible values are: beta deleted deprecated deprecatedEditable installed installedEditable released unmanaged
- InstalledPackageName? string - The name of the installed package that includes this flow definition.
- TriggerObjectOrEventLabel? string - Trigger object or event label
- TriggerObjectOrEventId? string - ID of the associated trigger object or event
- RecordTriggerType? string - Type of the record trigger
- HasAsyncAfterCommitPath? boolean - Indicates whether the record has async after commit path (true) or not (false)
- VersionNumber? int - Version number of the record
- TriggerOrder? int - Trigger order
- Environments? string - Environments
- ApiVersion? int - API version of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowExecutionErrorEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- InterviewStartDate? string - Date of the interview start
- FlowExecutionStartDate? string - Date of the flow execution start
- FlowExecutionEndDate? string - Date of the flow execution end
- InterviewGuid? string - Interview guid
- InterviewBatchId? string - ID of the associated interview batch
- InterviewRequestId? string - ID of the associated interview request
- FlowNamespace? string - Flow namespace
- FlowApiName? string - Name of the flow API
- FlowVersionId? string - ID of the associated flow version
- StageQualifiedApiName? string - Name of the stage qualified API
- ProcessType? string - Type of the process
- EventType? string - Type of the event
- RelatedRecordId? string - ID of the related record
- FlowVersionNumber? int - Flow version number
- ContextRecordId? string - ID of the associated context record
- ContextObject? string - Context object
- InterviewStartedById? string - ID of the associated interview started by
- ErrorId? string - ID of the associated error
- ExtendedErrorCode? string - Extended error code
- ErrorMessage? string - Error message associated with the record
- ElementApiName? string - Name of the element API
- ElementType? string - Type of the element
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowInterviewLogEntrySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FlowInterviewLogId? string - ID of the associated flow interview log
- LogEntryType? string - Type of the log entry
- ElementApiName? string - Name of the element API
- LogEntryTimestamp? string - Log entry timestamp
- DurationSinceStartInMinutes? decimal - Duration since start in minutes
- ElementDurationInMinutes? decimal - Element duration in minutes
- ElementLabel? string - Element label
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowInterviewLogShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowInterviewLogSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FlowDeveloperName? string - Name of the flow developer
- FlowInterviewGuid? string - Flow interview guid
- FlowVersionNumber? int - Flow version number
- InterviewStartTimestamp? string - Interview start timestamp
- InterviewEndTimestamp? string - Interview end timestamp
- InterviewDurationInMinutes? decimal - Interview duration in minutes
- InterviewStatus? string - Status of the interview
- FlowNamespace? string - Flow namespace
- FlowLabel? string - Flow label
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowInterviewShareSObject
Represents a sharing entry on a FlowInterview.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the FlowInterview associated with this sharing entry.
- UserOrGroupId? string - ID of the User or Group that has been given access to the FlowInterview. This field can't be updated.
- AccessLevel? string - Level of access that the User or Group has to the FlowInterview. The possible values are: Read Edit—In API version 42.0 and later, when Let users resume shared flow interviews is enabled for your org, users can resume all flow interviews that they have edit access to. All—This value is not valid for creating or deleting records.
- RowCause? string - Reason that this sharing entry exists. You can only write to this field when its value is either omitted or set to Manual (default).
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowInterviewSObject
Represents a flow interview. A flow interview is a running instance of a flow.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the user who owns the interview. Only this user or an admin can resume the interview.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name for the interview.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CurrentElement? string - The flow element at which the interview is currently paused.
- InterviewLabel? string - Label for the interview. This label helps users and administrators differentiate interviews from the same flow.In the user interface, this label appears in the Paused Flow Interviews component on the user’s Home tab and in the list of paused flow interviews in Setup.
- PauseLabel? string - Information about why the interview was paused. This string is entered by the user who paused the flow interview. The label is Why Paused.
- Guid? string - Globally unique identifier for the interview.
- WasPausedFromScreen? boolean - Whether or not the flow interview was paused by a user from a flow Screen element. This field is available in API version 46.0 and later.
- FlowVersionViewId? string - ID of the associated flow version view
- InterviewStatus? string - Status of the interview
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- OrchestrationInstanceId? string - ID of the associated orchestration instance
- StepInstanceId? string - ID of the associated step instance
- StepStatus? string - Status of the step
- EventPayload? string - Event payload
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationInstanceShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationInstanceSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- Status? string - Current status of the record
- InterviewId? string - ID of the associated interview
- OrchestrationDeveloperName? string - Name of the orchestration developer
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationLogSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrchestrationName? string - Name of the orchestration
- OrchestrationVersion? int - Orchestration version
- OrchestrationInstanceId? string - ID of the associated orchestration instance
- StageName? string - Current stage of the opportunity
- StepName? string - Name of the step
- Actor? string - Actor
- Kind? string - Kind
- Timestamp? string - Timestamp
- Duration? decimal - Duration of the record
- Context? string - Context
- AssigneeType? string - Type of the assignee
- Assignee? string - Assignee
- Comments? string - Comments on the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationStageInstanceShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationStageInstanceSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrchestrationInstanceId? string - ID of the associated orchestration instance
- Status? string - Current status of the record
- Position? int - Position
- Label? string - Display label for the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationStepInstanceShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationStepInstanceSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrchestrationInstanceId? string - ID of the associated orchestration instance
- StageInstanceId? string - ID of the associated stage instance
- StepType? string - Type of the step
- Status? string - Current status of the record
- Label? string - Display label for the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationWorkItemShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowOrchestrationWorkItemSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- StepInstanceId? string - ID of the associated step instance
- Status? string - Current status of the record
- RelatedRecordId? string - ID of the related record
- Label? string - Display label for the record
- Description? string - Description of the record
- AssigneeId? string - ID of the associated assignee
- ScreenFlow? string - Screen flow
- ScreenFlowInputs? string - Screen flow inputs
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowRecordRelationSObject
Represents a relationship between a record and a flow interview. When a flow interview is paused, Salesforce uses the $Flow.CurrentRecord global variable in the flow to associate the interview with a record.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The auto-generated ID of this relation.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentId? string - The flow interview that the record is related to.
- RelatedRecordId? string - The record that the flow interview is related to. Make sure that this field contains only one ID, and that the ID is for a valid object. Custom objects and most standard objects are supported. To confirm whether an object is supported, see the Reference To property for this field in Workbench.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowStageRelationSObject
Represents a relationship between a paused flow interview and its stages. When a flow interview is paused, Salesforce creates a FlowStageRelation record for each stage that’s set to the $Flow.CurrentStage or $Flow.ActiveStages global variable.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The auto-generated ID of this relation.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ParentId? string - The flow interview that the record is related to.
- StageId? string - ID of the associated stage
- StageOrder? int - The order of this stage when the flow interview was paused. This order may differ from the order in the stage definition. If the type is Active, the order corresponds to the order of the stage in $Flow.ActiveStages. If the type is Current and corresponds to an active stage, the order matches the order of the active stage. If the type is Current and doesn't correspond to an active stage, the order is 0.
- StageType? string - Type of stage. The valid values are: Current: Identifies that the stage is set to $Flow.CurrentStage. Active: Identifies that the stage is set to $Flow.ActiveStages.
- StageLabel? string - Label for the stage. If the stage is translated, the label respects the language of the user who is querying the label.
- FlexIndex? string - Flex index
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowTestResultShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowTestResultSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FlowVersionNumber? int - Flow version number
- Result? string - Result
- FlowTestViewId? string - ID of the associated flow test view
- FlowVersionViewId? string - ID of the associated flow version view
- FlowDefinitionViewId? string - ID of the associated flow definition view
- TestStartDateTime? string - Date and time of the test start
- TestEndDateTime? string - Date and time of the test end
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowTestViewSObject
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- FlowDefinitionViewId? string - ID of the associated flow definition view
- FlowTestApiName? string - Name of the flow test API
- FlowTestLabel? string - Flow test label
- Description? string - Description of the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowVariableViewSObject
Represents a variable within the flow version.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - The Id of the flow variable.
- FlowVersionViewId? string - The Id of the flow version.
- ApiName? string - The API name of the flow variable.
- Description? string - Flow variable information, specified by the org’s admin.
- DataType? string - The data type of the flow variable. Valid values are: Apex—This value is available in API version 46.0 and later. Boolean Currency Date DateTime—This value is available in API version 30.0 and later. Number Multipicklist—This value is available in API version 34.0 and later. Picklist—This value is available in API version 34.0 and later. String sObject
- IsInput? boolean - Indicated whether or not the flow variable is available for input.
- IsOutput? boolean - Indicates whether or not the flow variable is available for output.
- IsCollection? boolean - Indicates whether or not the flow variable is a collection of values.
- ObjectType? string - If the data type is sObject, this field indicates which object.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FlowVersionViewSObject
Represents the version of a flow definition.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - The ID of the flow version.
- FlowDefinitionViewId? string - The ID of the flow definition.
- Label? string - The label of the flow version.
- Description? string - Flow version information, specified by the org’s admin.
- Status? string - The flow’s status. Active Draft Obsolete InvalidDraft
- VersionNumber? int - The flow’s version number.
- ProcessType? string - The type of the flow. Valid values are:Appointments—A flow for Lightning Scheduler. This value is available in API version 44.0 and later. AutoLaunchedFlow—A flow that doesn’t require user interaction. CheckoutFlow—A flow used in Lightning B2B Commerce to create a checkout in a store. This value is available in API version 48.0 and later. ContactRequestFlow—A flow that lets customers request that customer support get back to them. This flow is used to create contact request records. This value is available in API version 45.0 and later. CustomerLifecycle—A Salesforce Surveys flow that lets you associate survey questions with different stages in customer lifecycles. This value is available in API version 49.0 and later and only when the Customer Lifecycle Designer license is enabled. CustomEvent—A process that is invoked when it receives a platform event message. In the UI, it’s an event process. This value is available in API version 41.0 and later. FieldServiceMobile—A flow for the Field Service mobile app. This value is available in API version 39.0 and later. FieldServiceWeb—A flow for embedded Appointment Booking. Its UI label is Field Service Embedded Flow. This value is available in API version 41.0 and later. Flow—A flow that requires user interaction because it contains one or more screens or local actions, choices, or dynamic choices. In the UI and Salesforce Help, it’s a screen flow. Screen flows can be launched from the UI, such as with a flow action, Lightning page, or web tab. FSCLending— A flow for Financial Services Cloud Mortgage. This value is available in API version 46.0 and later. FSCLending—A flow for login. This value is available in API version 51.0 and later. InvocableProcess—A process that can be invoked by another process or the Invocable Actions resource in REST API. This value is available in API version 38.0 and later. Survey—A flow for Salesforce Surveys. From the UI, this type of flow is created in Survey Builder. This value is available in API version 42.0 and later. SurveyEnrich—A Salesforce Surveys flow that uses the Survey Data Mapper. From the UI, this type of flow is created in the Survey Builder and requires an associated survey flow type. This value is available in API version 49.0 or later and only when the Customer Lifecycle Designer license is enabled. Workflow—A process that is invoked when a record is created or edited. In the UI and Salesforce Help, it’s a record change process. These values are reserved for future use. ActionCadenceFlow ActionPlan AppProcess CartAsyncFlow DigitalForm Journey JourneyBuilderIntegration LoginFlow ManagedContentFlow OrchestrationFlow RecommendationStrategy SalesEntryExperienceFlow TransactionSecurityFlow UserProvisioningFlowThis value has significant impact on validation when saving the flow and on the flow’s runtime behavior. Don’t change this value unless you understand the flow properties of the specified type.
- IsTemplate? boolean - Indicates whether the process or flow is a template. When installed from managed packages, processes and flows can’t be viewed or cloned by subscribers because of intellectual property (IP) protection. But when those processes and flows are templates, subscribers can open them in a builder, clone them, and customize the clones. Available in API version 46.0 and later. Default: false
- RunInMode? string - The mode that the flow runs in. Valid values are: DefaultMode — The flow version runs in system or user context, depending on how the flow is launched. SystemModeWithSharing — The flow version always runs in system mode with sharing. The flow respects org-wide default settings, role hierarchies, sharing rules, manual sharing, teams, and territories. But it doesn’t respect object permissions, field-level access, or other permissions of the running user.
- LastModifiedDate? string - Date and time when the record was last modified
- IsSwingFlow? boolean - Indicates whether the record is swing flow (true) or not (false)
- ApiVersion? decimal - The API version for the flow definition. Every flow version has an API version specified at creation. This field is available in API version 50.0 and later.
- ApiVersionRuntime? decimal - The API version for running the flow. This value determines which versioned run-time behavior improvements are adopted by the flow version. If not specified when the flow or flow version is created, the latest available API version is used as the API version for running the flow. When an existing flow is saved as a new flow or flow version, the existing flow’s run-time API version is used in the new flow or flow version. This field is available in API version 50.0 and later.
- CapabilityType? string - Type of the capability
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FolderedContentDocumentSObject
Represents the relationship between a parent and child ContentFolderItem in a ContentWorkspace.
Fields
- Id? string - Unique identifier for the record
- IsFolder? boolean - Indicates that the FolderedContentDocument is a folder, rather than a file.
- ContentDocumentId? string - ID of the ContentDocument that can be in a folder.
- ParentContentFolderId? string - ID of the ContentFoldr the ContentDocument resides in.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Title? string - Name of the file or folder in a ContentFolder.
- FileType? string - File type of the ContentDocument.
- ContentSize? int - File size of the ContentDocument.
- FileExtension? string - File extension of the ContentDocument.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FolderSObject
Represents a repository for a Dashboard, Document, EmailTemplate, Macro, QuickText, or Report. Only one type of item can be contained in a folder.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent object, if any.
- Name? string - Label of the folder as it appears in the user interface. Label is Document Folder Label.
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. Label is Folder Unique Name.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- AccessType? string - Required. Indicates who can access the Folder. Available values include: Hidden—Folder is hidden from everyone. Public—Folder is accessible by all users. Shared—Folder is accessible only by a User in a particular Group or UserRole. The API doesn’t allow you to view, insert, or update which group or Role the Folder is shared with. If analytics folder sharing is turned on for your organization, then this field is present but not used.
- IsReadonly? boolean - Indicates whether this Folder is read-only (true) or editable (false). Label is Read Only.If analytics folder sharing is turned on for your organization, then this field is present but not used.
- Type? string - Required. Type of objects contained in the Folder. This field can’t be updated. Available values include: Dashboard Document Email (for Salesforce Classic email templates) EmailTemplate (for Lightning email templates) Macro QuickText Report
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FormulaFunctionAllowedTypeSObject
Represents the functions that are supported in the given formula context.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Unique identifier for the field. Always retrieve this value before using it, as the value isn’t guaranteed to stay the same from one release to the next. To simplify queries, use this field.
- FunctionId? string - Unique identifier for the supported function.
- Type? string - The name of the formula type in which the function is supported.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FormulaFunctionCategorySObject
Represents the category to which a formula belongs when building a formula.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Unique identifier for the field. Always retrieve this value before using it, as the value isn’t guaranteed to stay the same from one release to the next. To simplify queries, use this field.
- Name? string - Name of the FormulaFunctionCategory.
- Label? string - Label of the FormulaFunctionCategory that appears in the user interface.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FormulaFunctionSObject
Represents a function used when building a formula, including examples and uses.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Unique identifier for the field. Always retrieve this value before using it, as the value isn’t guaranteed to stay the same from one release to the next. To simplify queries, use this field.
- Name? string - The name of the formula function.
- Label? string - The formula function label that appears in the user interface.
- CategoryId? string - The ID of the FormulaFunctionCategory.
- Description? string - Description of the formula function.
- ExampleString? string - Describes the function and what arguments you can use with it.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FOStatusChangedEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- FulfillmentOrderId? string - ID of the associated fulfillment order
- OldStatus? string - Status of the old
- NewStatus? string - Status of the new
- OldStatusCategory? string - Old status category
- NewStatusCategory? string - New status category
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderItemAdjustmentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderItemAdjustmentSObject
Represents a price adjustment on a FulfillmentOrderLineItem. Corresponds to an OrderItemAdjustmentLineSummary associated with the corresponding OrderItemSummary.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- FulfillmentOrderItemAdjustmentNumber? string - ID of the FulfillmentOrderLineItemAdjustment.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FulfillmentOrderLineItemId? string - ID of the FulfillmentOrderLineItem to which this adjustment applies.
- FulfillmentOrderId? string - ID of the FulfillmentOrder associated with the FulfillmentOrderLineItem to which the adjustment applies.
- CampaignName? string - Campaign associated with the adjustment.
- CouponName? string - Coupon associated with the adjustment.
- PromotionName? string - Promotion associated with the adjustment.
- Description? string - Text description of the adjustment.
- TotalTaxAmount? decimal - Tax on the Amount.
- Amount? decimal - Amount, not including tax, of the adjustment.
- TotalAmtWithTax? decimal - Total amount of the adjustment, inclusive of tax. This amount is equal to Amount + TotalTaxAmount.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderItemTaxFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderItemTaxSObject
Represents the tax on a FulfillmentOrderLineItem or FulfillmentOrderItemAdjustment. Corresponds to an OrderItemTaxLineItemSummary.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- FulfillmentOrderItemTaxNumber? string - ID of the FulfillmentOrderItemTax.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FulfillmentOrderLineItemId? string - If this object represents tax on a FulfillmentOrderLineItem, this value is the ID of that FulfillmentOrderLineItem. If this object represents tax on an adjustment, this value is the ID of the FulfillmentOrderLineItem to which the adjustment applies.
- FulfillmentOrderId? string - ID of the associated FulfillmentOrder.
- FulfillmentOrderItemAdjustId? string - If this object represents tax on an adjustment, this value is the ID of the FulfillmentOrderItemAdjustment to which the tax applies. If this value is null, the adjustment applies to a FulfillmentOrderLineItem.
- Type? string - Indicates whether the Amount is actual or estimated.
- Amount? decimal - Amount of tax represented by the FulfillmentOrderItemTax.
- Description? string - Description of the FulfillmentOrderItemTax.
- Rate? decimal - Tax rate used to calculate the Amount.
- TaxEffectiveDate? string - Date on which the Amount was calculated. Important due to tax rate changes over time.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderLineItemFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderLineItemSObject
Represents a product or delivery charge belonging to a FulfillmentOrder. Corresponds to an OrderItemSummary.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- FulfillmentOrderLineItemNumber? string - ID of the FulfillmentOrderLineItem.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- FulfillmentOrderId? string - ID of the FulfillmentOrder associated with the FulfillmentOrderLineItem.
- OrderItemId? string - ID of the original OrderItem for the OrderItemSummary associated with the FulfillmentOrderLineItem.
- Description? string - Description of the FulfillmentOrderLineItem.
- Quantity? decimal - Current quantity of the FulfillmentOrderLineItem. Equal to the original quantity minus any canceled quantity.
- OriginalQuantity? decimal - Original quantity of the FulfillmentOrderLineItem.
- QuantityUnitOfMeasure? string - Unit of measure of the quantity, for example: unit, gallon, ton, or case.
- TotalPrice? decimal - Total, including adjustments but not tax, of the FulfillmentOrderLineItem. Equal to UnitPrice times Quantity.
- TotalLineAmount? decimal - Total, not including adjustments or tax, of the FulfillmentOrderLineItem.
- TotalAdjustmentAmount? decimal - Total of any price adjustments applied to the FulfillmentOrderLineItem.
- TotalAdjustmentTaxAmount? decimal - Tax on the TotalAdjustmentAmount.
- TotalLineTaxAmount? decimal - Tax on the TotalLineAmount.
- TotalTaxAmount? decimal - Tax on the TotalPrice.
- TotalAmount? decimal - Total, including adjustments and tax, of the FulfillmentOrderLineItem.
- UnitPrice? decimal - Unit price of the FulfillmentOrderLineItem.
- ServiceDate? string - Service or start date of the FulfillmentOrderLineItem.
- EndDate? string - End date of the FulfillmentOrderLineItem.
- Product2Id? string - ID of the product represented by the FulfillmentOrderLineItem.
- GrossUnitPrice? decimal - Unit price, including tax, of the FulfillmentOrderLineItem. This value is equal to TotalPrice + TotalTaxAmount.
- TotalLineAmountWithTax? decimal - Total price of the FulfillmentOrderLineItem, inclusive of tax. This amount is equal to TotalLineAmount + TotalLineTaxAmount.
- TotalAdjustmentAmountWithTax? decimal - Total amount of the price adjustments applied to the FulfillmentOrderLineItem, inclusive of tax. This amount is equal to TotalAdjustmentAmount + TotalAdjustmentTaxAmount.
- IsReship? boolean - Indicates whether the record is reship (true) or not (false)
- ReshipReason? string - Reship reason
- RejectReason? string - Reject reason
- RejectedQuantity? decimal - Rejected quantity
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillmentOrderSObject
Represents a group of products and delivery charges on a single order that share the same fulfillment location, delivery method, and recipient. The FulfillmentOrderLineItems belonging to a FulfillmentOrder are associated with OrderItemSummary objects belonging to a single OrderSummary.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the User who currently owns this FulfillmentOrder. Default value is the User logged in to the API to perform the create.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- FulfillmentOrderNumber? string - ID of the FulfillmentOrder.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Timestamp for when the current user last viewed this record. A null value can mean that this record has only been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - Timestamp for when the current user last viewed a record related to this record.
- AccountId? string - ID of the Account or Person Account associated with the FulfillmentOrder. It represents the shopper in the storefront.
- FulfilledFromLocationId? string - ID of the Location handling this FulfillmentOrder.
- FulfilledToName? string - Name on the recipient address.
- FulfilledToStreet? string - Recipient address street.
- FulfilledToCity? string - Recipient address city.
- FulfilledToState? string - Recipient address state.
- FulfilledToPostalCode? string - Recipient address postal code.
- FulfilledToCountry? string - Recipient address country.
- FulfilledToLatitude? decimal - Used with FulfilledToLongitude to specify the precise geolocation of the recipient address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- FulfilledToLongitude? decimal - Used with FulfilledToLatitude to specify the precise geolocation of the recipient address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- FulfilledToGeocodeAccuracy? string - Accuracy of the geocode for the recipient address.
- FulfilledToAddress? record {} - Address of the recipient.
- FulfilledToEmailAddress? string - Email address of the recipient.
- FulfilledToPhone? string - Phone number of the recipient.
- ItemCount? decimal - Sum of the quantities of the FulfillmentOrderLineItems included in the FulfillmentOrder.
- Status? string - Status of the FulfillmentOrder. Each status corresponds to one status category, shown here in parentheses. You can customize the status picklist to represent your business processes, but the status category picklist is fixed because processing is based on those values. If you customize the status picklist, include at least one status value for each status category.
- StatusCategory? string - Status category of the FulfillmentOrder. Processing of the FulfillmentOrder depends on this value. Each status category corresponds to one or more statuses.
- Type? string - Type of the FulfillmentOrder. Each type corresponds to one type category, shown here in parentheses. You can customize the type picklist to represent your business processes, but the type category picklist is fixed because processing is based on those values. If you customize the type picklist, include at least one type value for each type category.
- TypeCategory? string - Type category of the FulfillmentOrder. Processing of the FulfillmentOrder depends on this value. Each type category corresponds to one or more types.
- TotalProductAmount? decimal - Total price of the products on the FulfillmentOrder. This value only includes FulfillmentOrderLineItems of type code Product.
- TotalAdjustmentAmount? decimal - Total amount of the price adjustments applied to the products on the FulfillmentOrder. This value only includes adjustments to FulfillmentOrderLineItems of type code Product.
- TotalDeliveryAmount? decimal - Total of the delivery charges on the FulfillmentOrder. This value only includes FulfillmentOrderLineItems of type code Charge.
- TotalProductTaxAmount? decimal - Tax on the TotalProductAmount.
- TotalAdjustmentTaxAmount? decimal - Tax on the TotalAdjustmentAmount.
- TotalDeliveryTaxAmount? decimal - Tax on the TotalDeliveryAmount.
- TotalFeeAmount? decimal - Total fee amount
- TotalFeeTaxAmount? decimal - Total fee tax amount
- TotalAmount? decimal - Adjusted total, not including tax, of the FulfillmentOrderLineItems, including products and delivery charges, on the FulfillmentOrder.
- TotalTaxAmount? decimal - Tax on the TotalAmount.
- OrderId? string - ID of the original Order that generated the FulfillmentOrder.
- InvoiceId? string - ID of the Invoice associated with the FulfillmentOrder.
- GrandTotalAmount? decimal - Total, including adjustments and tax, of the products and delivery charges on the FulfillmentOrder. This amount includes all FulfillmentOrderLineItems associated with the FulfillmentOrder. This amount is equal to TotalAmount + TotalTaxAmount.
- IsSuspended? boolean - Indicates whether the FulfillmentOrder is suspended. The default value is false.
- TotalDeliveryAdjustAmount? decimal - Total amount of the price adjustments applied to the delivery charges on the FulfillmentOrder. This value only includes adjustments to FulfillmentOrderLineItems of type code Charge.
- TotalDeliveryAdjustTaxAmount? decimal - Tax on the TotalDeliveryAdjustAmount.
- TotalFeeAdjustAmount? decimal - Total fee adjust amount
- TotalFeeAdjustTaxAmount? decimal - Total fee adjust tax amount
- TaxLocaleType? string - The system used to handle tax on the original Order associated with the FulfillmentOrder. Gross usually applies to taxes like value-added tax (VAT), and Net usually applies to taxes like sales tax.
- BillToContactId? string - ID of the Contact associated with the FulfillmentOrder. It represents the shopper in the storefront when not using person accounts.
- TotalProductAmtWithTax? decimal - Total price of the products on the FulfillmentOrder, inclusive of tax. This value only includes FulfillmentOrderLineItems of type code Product. This amount is equal to TotalProductAmount + TotalProductTaxAmount.
- TotalAdjustmentAmtWithTax? decimal - Total amount of the price adjustments applied to the products on the FulfillmentOrder, inclusive of tax. This value only includes adjustments to FulfillmentOrderLineItems of type code Product. This amount is equal to TotalAdjustmentAmount + TotalAdjustmentTaxAmount.
- TotalDeliveryAmtWithTax? decimal - Total amount of the delivery charges on the FulfillmentOrder, inclusive of tax. This value only includes FulfillmentOrderLineItems of type code Charge. This amount is equal to TotalDeliveryAmount + TotalDeliveryTaxAmount.
- TotalDeliveryAdjustAmtWithTax? decimal - Total amount of the price adjustments applied to the delivery charges on the FulfillmentOrder, inclusive of tax. This value only includes adjustments to FulfillmentOrderLineItems of type code Charge. This amount is equal to TotalDeliveryAdjustAmount + TotalDeliveryAdjustTaxAmount.
- TotalFeeAmtWithTax? decimal - Total fee amt with tax
- TotalFeeAdjustAmtWithTax? decimal - Total fee adjust amt with tax
- IsReship? boolean - Indicates whether the record is reship (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: FulfillOrdItemQtyChgEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- FulfillmentOrderLineItemId? string - ID of the associated fulfillment order line item
- OldQuantity? decimal - Old quantity
- NewQuantity? decimal - New quantity
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GetDeletedResult
Fields
- deletedRecords? GetDeletedResult_deletedRecords[] - deleted records
- earliestDateAvailable? string - earliest date available
- latestDateCovered? string - latest date covered
salesforce.types: GetDeletedResult_deletedRecords
Fields
- id? string - id
- deletedDate? string - Date of the deleted
salesforce.types: GrantedByLicenseSObject
The GrantedByLicense object shows the different settings granted by different licenses.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PermissionSetLicenseId? string - ID of the related permission set license.
- CustomPermissionId? string - The ID of the related custom permission.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GroupMemberSObject
Represents a User or Group that is a member of a public group.
Fields
- Id? string - Unique identifier for the record
- GroupId? string - Required. ID of the Group.
- UserOrGroupId? string - Required. ID of the User or Group that is a direct member of the group.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GroupSObject
A set of User records.
Fields
- Id? string - Unique identifier for the record
- Name? string - Required. Name of the group. Corresponds to Label on the user interface.
- DeveloperName? string - The name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. This name is unique by group type and corresponds to Group Name in the user interface. This field is available in API version 24.0 and later.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- RelatedId? string - Represents the ID of the associated groups. For groups of type “Role,” the ID of the associated UserRole. The RelatedId field is polymorphic.
- Type? string - Required. Type of the group. One of the following values: AllCustomerPortal—Public group that includes all Customer Portal or Customer Community Plus users. This type is only available when a Customer Portal or a Customer Site is enabled for your org. ChannelProgramGroup—Public group for partners in a channel program. CollaborationGroup—Chatter group. Manager—Public group that includes a user’s direct and indirect managers. This group is read-only. ManagerAndSubordinatesInternal—Public group that includes a user and the user’s direct and indirect reports. This group is read-only. Organization—Public group that includes all the User records in the organization. This group is read-only. Participant—Compliant Data Sharing group that includes internal users who have the Use Compliant Data Sharing permission. A group can contain other participant groups only, or a group can contain both internal users with the Use Compliant Data Sharing permission and other participant groups. This value is only available when Compliant Data Sharing is enabled for your org. PRMOrganization—Public group that includes all the partners in an organization that has the partner site or portal feature enabled. Queue—Public group that includes all the User records that are members of a queue. Regular—Standard public group. When you create() a group, its type must be Regular, unless a partner site or portal is enabled for the organization, in which case the type can be Regular or PRMOrganization. Role—Public group that includes all the User records in a particular UserRole. RoleAndSubordinates—Public group that includes all the User records in a particular UserRole and all the User records in any subordinate UserRole. RoleAndSubordinatesInternal—Public group that includes all the User records in an internal UserRole, excluding customer and partner roles, and all the User records in any subordinate internal UserRole. Territory—Public group that includes all the User records in an organization that has the territory feature enabled. TerritoryAndSubordinates—Public group that includes all the User records in a particular UserRole and all the User records in any subordinateUserRole in an organization that has the territory feature enabled. Only Personal, Regular, and Queue can be used when creating a group. The other values are reserved.
- Email? string - Email address for a group of type Case. Applies only for a case queue.
- OwnerId? string - ID of the user who owns the group.
- DoesSendEmailToMembers? boolean - Indicates whether the email is sent (true) or not sent (false) to the group members. The email is sent to queue members as well.
- DoesIncludeBosses? boolean - Indicates whether the managers have access (true) or do not have access (false) to records shared with members of the group. This field is only available for public groups. This field is available in API version 18.0 and later.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GtwyProvPaymentMethodTypeSObject
The gateway provider payment method type entity allows integrators and payment providers to choose an active payment to receive an order's payment data rather than allowing the Salesforce Order Management platform to select a default payment method.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Name of the developer that created the payment gateway integration. Optional.
- Language? string - Language of the payment gateway integration.
- MasterLabel? string - Required. The gateway provider payment method type name that appears in the user interface.
- NamespacePrefix? string - Namespace of the payment gateway integration classes.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- PaymentGatewayProviderId? string - Specifies the payment gateway provider that Salesforce Order Management should use when processing payments. One payment gateway provider can be related to multiple payment method types.
- Comments? string - Users can provide additional details about the payment record. Supports a maximum of 1000 characters.
- PaymentMethodType? string - Specifies the type of payment method used on an order in Salesforce Order Management.
- GtwyProviderPaymentMethodType? string - Links the Salesforce payment method to the payment method used in the Salesforce Order Management storefront. Your payment gateway integration uses this field when finding a payment method to link to a payment.
- RecordTypeId? string - ID of the record type entity related to the gateway provider payment method type.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GuestUserAnomalyEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SourceIp? string - IP address of the source that triggered the event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SecurityEventData? string - Additional security data associated with the event
- Score? decimal - Score associated with the event
- Summary? string - Summary description of the event
- RequestedEntities? string - Requested entities
- TotalControllerEvents? int - Total controller events
- UserAgent? string - User agent string of the client application
- UserType? string - Type of the user
- SoqlCommands? string - SOQL commands
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GuestUserAnomalyEventStoreFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: GuestUserAnomalyEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- GuestUserAnomalyEventNumber? string - Guest user anomaly event number
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SourceIp? string - IP address of the source that triggered the event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SecurityEventData? string - Additional security data associated with the event
- Score? decimal - Score associated with the event
- Summary? string - Summary description of the event
- RequestedEntities? string - Requested entities
- TotalControllerEvents? int - Total controller events
- UserAgent? string - User agent string of the client application
- UserType? string - Type of the user
- SoqlCommands? string - SOQL commands
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: HolidaySObject
Represents a period of time during which your customer support team is unavailable. Business hours and escalation rules associated with business hours are suspended during any holidays with which they are affiliated.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the holiday.
- Description? string - Text description of the holiday.
- IsAllDay? boolean - Indicates whether the duration of the holiday is all day (true) or not (false).
- ActivityDate? string - If the Holiday IsAllDay flag is set to true (indicating that it is an all-day holiday), then the holiday due date information is contained in the ActivityDate field. This field is a date field with a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone. The timestamp is not relevant, and you should not attempt to alter it to account for any time zone differences.
- StartTimeInMinutes? int - The start time of the holiday in minutes.
- EndTimeInMinutes? int - The end time of the holiday in minutes.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsRecurrence? boolean - Indicates whether the holiday is scheduled to repeat itself (true) or only occurs once (false). This is a read only field on update, but not on create. If this field value is true, then any recurrence fields associated with the given recurrence type must be populated.
- RecurrenceStartDate? string - The date when the recurring holiday begins. Must be a date and time before RecurrenceEndDateOnly.
- RecurrenceEndDateOnly? string - The last date on which the holiday repeats. For multiday recurring events, this is the day on which the last occurrence starts.
- RecurrenceType? string - Indicates how often the holiday repeats. For example, daily, weekly, or every Nth month (where “Nth” is defined in RecurrenceInstance).
- RecurrenceInterval? int - The interval between recurring holidays.
- RecurrenceDayOfWeekMask? int - The day or days of the week on which the holiday repeats. This field contains a bitmask. For each day of the week, the values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64 Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20.
- RecurrenceDayOfMonth? int - The day of the month on which the holiday repeats.
- RecurrenceInstance? string - The frequency of the recurring holiday. For example, 2nd or 3rd.
- RecurrenceMonthOfYear? string - The month of the year on which the event repeats.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IconDefinitionSObject
Represents the icon-related metadata for a custom tab.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - A unique virtual Salesforce ID for the icon.
- TabDefinitionId? string - The TabDefinition ID.
- Url? string - The fully qualified URL for this icon.
- ContentType? string - The tab icon’s content type, for example, “image/png.”
- Theme? string - The icon’s theme.
- Height? int - The tab icon’s height in pixels. If the icon content type is an SVG type, height and width values are not used.
- Width? int - The tab icon’s width in pixels. If the icon content type is an SVG type, height and width values are not used.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IdeaCommentSObject
Represents a comment that a user has submitted in response to an idea.
Fields
- Id? string - Unique identifier for the record
- IdeaId? string - ID of the idea on which this comment was made.
- CommunityId? string - The zone ID associated with the idea. Once you create an idea, you can’t change the zone ID associated with that idea.API version 12 does not support zone ID. If you create an idea in version 12, your idea is automatically posted to the oldest zone that you have permission to access.
- CommentBody? string - Body of the submitted comment.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IsHtml? boolean - Read-only. If this value is true, your organization has the Ideas HTML editor enabled, and the CommentBody field may contain HTML. If this value is false, the HTML editor is disabled and the CommentBody field only contains regular text.
- CreatorFullPhotoUrl? string - URL of the user’s profile photo. This field is available in API version 28.0 and later.
- CreatorSmallPhotoUrl? string - URL of the user’s thumbnail photo. This field is available in API version 28.0 and later.
- CreatorName? string - Name of the user who posted the idea or commented on the idea. This field is available in API version 28.0 and later.
- UpVotes? int - Total number of up votes for the question.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IdeaSObject
Represents an idea on which users are allowed to comment and vote, for example, a suggestion for an enhancement to an existing product or process.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- Title? string - The descriptive title of the idea.
- RecordTypeId? string - The ID of the record type assigned to this object.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- CommunityId? string - The zone ID associated with the idea. Once you create an idea, you can’t change the zone ID associated with that idea.API version 12 does not support zone ID. If you create an idea in version 12, your idea is automatically posted to the oldest zone that you have permission to access.
- Body? string - Description of the Idea.
- NumComments? int - The number of comments (child IdeaComment objects) that users have submitted for the given idea.
- VoteScore? decimal - The internal score of the Idea, used to sort Ideas on the Popular tab in the application user interface. The internal algorithm that determines the score gives older votes less weight than newer votes, simulating exponential decay. The score itself does not display in the application user interface.Unlike other fields of type double, you can't use a SOQL aggregate function with this field.
- VoteTotal? decimal - An Idea's total number of points. Each vote a user makes is worth ten points, therefore the value of this field is ten times the number of votes an idea has received.Unlike other fields of type double, you can't use a SOQL aggregate function with this field.
- Categories? string - Customizable multi-select picklist used to organize Ideas into logical groupings.This field is only available if your organization has the Categories field enabled. This field is enabled by default in organizations created after API version 14 was released. If the Categories field is enabled, API versions 13 and earlier do not have access to either the Categories or Category fields.
- Status? string - Customizable picklist of values used to specify the status of an idea.
- LastCommentDate? string - The date and time the last comment (child IdeaComment object) was added.
- LastCommentId? string - Read only. The ID of the last comment (child IdeaComment object).
- ParentIdeaId? string - The ID associated with this idea's parent idea. When multiple ideas are merged together, one idea becomes the parent (master) of the other ideas. The ParentIdeaId is automatically set when you merge ideas.
- IsHtml? boolean - Read-only. If this value is true, your organization has the Ideas HTML editor enabled, and the Idea Body may contain HTML. If this value is false, the HTML editor is disabled and the Idea Body only contains regular text.
- IsMerged? boolean - Read only. Indicates whether the idea has been merged with a parent idea (true) or not (false). You can’t vote for or add comments to a merged idea.In API version 27, IsMerged replaces IsLocked. Existing formula fields that use IsLocked must be edited to use IsMerged.
- CreatorFullPhotoUrl? string - URL of the user’s profile photo. This field is available in API version 28.0 and later.
- CreatorSmallPhotoUrl? string - URL of the user’s thumbnail photo. This field is available in API version 28.0 and later.
- CreatorName? string - Name of the user who posted the idea or commented on the idea. This field is available in API version 28.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IdentityProviderEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- EventDate? string - Date and time when the event occurred
- IdentityUsed? string - Identity used
- SamlEntityUrl? string - Saml entity URL
- InitiatedBy? string - Initiated by
- ErrorCode? string - Error code associated with the record
- SsoType? string - Type of the sso
- ServiceProviderId? string - ID of the associated service provider
- OauthConsumerId? string - ID of the associated OAuth consumer
- AuthSessionId? string - ID of the associated auth session
- AppId? string - ID of the associated app
- HasLogoutUrl? boolean - Indicates whether the record has logout URL (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IdentityVerificationEventSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- LoginHistoryId? string - ID of the login history record associated with the event
- VerificationMethod? string - Verification method
- Activity? string - Activity
- Status? string - Current status of the record
- Remarks? string - Remarks
- ResourceId? string - ID of the associated resource
- Policy? string - Policy
- EventGroup? string - Event group
- CountryIso? string - Country iso
- Country? string - Country of the address
- Latitude? decimal - Latitude coordinate of the address
- Longitude? decimal - Longitude coordinate of the address
- City? string - City of the address
- PostalCode? string - Postal code of the address
- Subdivision? string - Subdivision
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IdpEventLogSObject
Represents the Identity Provider Event Log. This log records both problems and successes with inbound SAML or OpenID Connect authentication requests from another app provider. It also records outbound SAML responses when Salesforce is acting as an identity provider.
Fields
- Id? string - Unique identifier for the record
- InitiatedBy? string - The code describing how the authentication request was initiated.
- Timestamp? string - The date and time on which the event occurred.
- ErrorCode? string - The error code for the authentication issue.
- SamlEntityUrl? string - The authentication URL of the SAML provider.
- UserId? string - The ID of the user seeking authentication.
- ServiceProviderId? string - ID of the associated service provider
- OauthConsumerId? string - ID of the associated OAuth consumer
- AuthSessionId? string - The ID of the authentication session.
- SsoType? string - The type of SSO. Options are:
- AppId? string - The ID of the app provider seeking authentication.
- IdentityUsed? string - The identity (username) of the user being authenticated.
- OptionsHasLogoutUrl? boolean - Whether a logout URL has been assigned to the app. This URL is where users are redirected when they log out.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IframeWhiteListUrlSObject
Represents a list of trusted external domains that you allow to frame your Visualforce pages and Surveys.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Url? string - The unique domain that is allowed to frame your Visualforce pages and surveys. Accepts these formats: example.com, *example.com, and http://example.com.
- Context? string - The type of content in the iframe. This value is available in API v49.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ImageFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ImageHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ImageId? string - ID of the associated image
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ImageShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ImageSObject
Represents the details of an image.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - Unique identifier of the record owner.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date on which the image was last viewed.
- LastReferencedDate? string - The date on which the image was last referenced.
- ImageViewType? string - Orientation of the image.
- IsActive? boolean - Indicates if an image is active. The default value is False. An active image can be used for building or updating a model in Einstein Object Detection.
- ImageClass? string - The image category.
- ImageClassObjectType? string - The type of image. Used in Einstein Object Detection to identify whether the image is used to detect objects or build a model.
- ContentDocumentId? string - Unique identifier of the content document where image is stored.
- CapturedAngle? string - Angle at which the image was captured.
- Title? string - Title of the image.
- AlternateText? string - Accessibility text to explain the image in words.
- Url? string - Public URL of the image file.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- IncidentNumber? string - Incident number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Subject? string - Subject line of the record
- Description? string - Description of the record
- ParentIncidentId? string - ID of the associated parent incident
- DetectedDateTime? string - Date and time of the detected
- StartDateTime? string - Start date and time of the record
- EndDateTime? string - Date and time of the end
- ResolutionSummary? string - Resolution summary
- ResolvedById? string - ID of the associated resolved by
- ResolutionDateTime? string - Date and time of the resolution
- Status? string - Current status of the record
- Impact? string - Impact of the record
- Urgency? string - Urgency level of the record
- Priority? string - Priority level of the record
- ReportedMethod? string - Reported method
- Type? string - Type or category of the record
- Category? string - Category of the record
- SubCategory? string - Subcategory of the record
- PriorityOverrideReason? string - Priority override reason
- IsMajorIncident? boolean - Indicates whether the record is major incident (true) or not (false)
- IsStopped? boolean - Indicates whether the record is stopped (true) or not (false)
- StopStartDate? string - Date of the stop start
- SlaStartDate? string - Date of the SLA start
- SlaExitDate? string - Date of the SLA exit
- BusinessHoursId? string - ID of the associated business hours
- IsClosed? boolean - Indicates whether the record is closed (true) or not (false)
- EntitlementId? string - ID of the associated entitlement
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IncidentId? string - ID of the associated incident
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentRelatedItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IncidentId? string - ID of the associated incident
- AssetId? string - ID of the associated asset
- ImpactType? string - Type of the impact
- ImpactLevel? string - Impact level of the record
- Comment? string - Comment on the record
- Product2Id? string - ID of the associated product
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentRelatedItemFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentRelatedItemHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IncidentRelatedItemId? string - ID of the associated incident related item
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentRelatedItemSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IncidentId? string - ID of the associated incident
- AssetId? string - ID of the associated asset
- ImpactType? string - Type of the impact
- ImpactLevel? string - Impact level of the record
- Comment? string - Comment on the record
- Product2Id? string - ID of the associated product
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IncidentSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IncidentNumber? string - Incident number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- Subject? string - Subject line of the record
- Description? string - Description of the record
- ParentIncidentId? string - ID of the associated parent incident
- DetectedDateTime? string - Date and time of the detected
- StartDateTime? string - Start date and time of the record
- EndDateTime? string - Date and time of the end
- ResolutionSummary? string - Resolution summary
- ResolvedById? string - ID of the associated resolved by
- ResolutionDateTime? string - Date and time of the resolution
- StatusCode? string - Status code of the record
- Status? string - Current status of the record
- Impact? string - Impact of the record
- Urgency? string - Urgency level of the record
- Priority? string - Priority level of the record
- ReportedMethod? string - Reported method
- Type? string - Type or category of the record
- Category? string - Category of the record
- SubCategory? string - Subcategory of the record
- PriorityOverrideReason? string - Priority override reason
- IsMajorIncident? boolean - Indicates whether the record is major incident (true) or not (false)
- IsStopped? boolean - Indicates whether the record is stopped (true) or not (false)
- StopStartDate? string - Date of the stop start
- SlaStartDate? string - Date of the SLA start
- SlaExitDate? string - Date of the SLA exit
- BusinessHoursId? string - ID of the associated business hours
- MilestoneStatus? string - Status of the milestone
- IsClosed? boolean - Indicates whether the record is closed (true) or not (false)
- EntitlementId? string - ID of the associated entitlement
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IndividualChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- LastName? string - Last name of the individual
- FirstName? string - First name of the individual
- Salutation? string - Salutation for the individual
- Name? string - Name of the record
- HasOptedOutTracking? boolean - Indicates whether the record has opted out tracking (true) or not (false)
- HasOptedOutProfiling? boolean - Indicates whether the record has opted out profiling (true) or not (false)
- HasOptedOutProcessing? boolean - Indicates whether the record has opted out processing (true) or not (false)
- HasOptedOutSolicit? boolean - Indicates whether the record has opted out solicit (true) or not (false)
- ShouldForget? boolean - Should forget
- SendIndividualData? boolean - Send individual data
- CanStorePiiElsewhere? boolean - Indicates whether the record can store pii elsewhere (true) or not (false)
- HasOptedOutGeoTracking? boolean - Indicates whether the record has opted out geo tracking (true) or not (false)
- BirthDate? string - Date of the birth
- DeathDate? string - Date of the death
- ConvictionsCount? int - Number of convictions
- ChildrenCount? int - Number of children
- MilitaryService? string - Military service
- IsHomeOwner? boolean - Indicates whether the record is home owner (true) or not (false)
- Occupation? string - Occupation
- Website? string - Website URL
- IndividualsAge? string - Individuals age
- ConsumerCreditScore? int - Consumer credit score
- ConsumerCreditScoreProviderName? string - Name of the consumer credit score provider
- InfluencerRating? int - Influencer rating
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IndividualHistorySObject
Represents the history of changes to values in the fields of a data privacy record, based on the Individual object.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- IndividualId? string - ID of the data privacy record. Label is Individual ID.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - The name of the changed field.
- DataType? string - Data type of the field that was changed
- OldValue? string - The previous value of the changed field.
- NewValue? string - The updated value of the changed field.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IndividualShareSObject
Represents a list of access levels to a data privacy record along with an explanation of the access level. For example, if you have access to a record because you own it, the IndividualAccessLevel is All and RowCause is Owner.
Fields
- Id? string - Unique identifier for the record
- IndividualId? string - ID of the Individual associated with this sharing entry. This field isn’t available for updates.
- UserOrGroupId? string - ID of the User or Group that has been given access to the data privacy record. This field isn’t available for updates.
- IndividualAccessLevel? string - Level of access that the user or group has to the data privacy record. The possible values include: Read Edit All (Except for create or update.) Set this field to an access level that’s higher than your default access level for individuals.
- RowCause? string - Reason that this sharing entry exists. Write to this field when its value is omitted or set to Manual (default). We give you some of the many possible values, including: Manual—The User or Group has access because a user with “All” access manually shared the data privacy record with them. Owner—The User is the owner of the data privacy record. Rule—The User or Group has access to the data privacy record via an Individual sharing rule. LpuImplicit—The User has access to records owned by high-volume Experience Cloud site users via a share group.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IndividualSObject
Represents a customer’s data privacy and protection preferences. Data privacy records based on the Individual object store your customers’ preferences. Data privacy records are associated with related leads, contacts, person accounts, and users.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner of the account associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastName? string - Required. The customer’s last name. Maximum size is 80 characters.
- FirstName? string - The customer’s first name. Maximum size is 40 characters.
- Salutation? string - The title for addressing the customer, such as Dr. or Mrs.
- Name? string - Concatenation of FirstName and LastName. Maximum size is 203 characters, including whitespaces.
- HasOptedOutTracking? boolean - Preference to not track customer web activity and whether the customer opens email sent through Salesforce.
- HasOptedOutProfiling? boolean - Preference to not process data for predicting personal attributes, such as interests, behavior, and location.
- HasOptedOutProcessing? boolean - Preference to not process personal data, which can include collecting, storing, and sharing personal data.
- HasOptedOutSolicit? boolean - Preference to not solicit products and services.
- ShouldForget? boolean - Preference to delete records and personal data related to this customer.
- SendIndividualData? boolean - Preference to export personal data for delivery to the customer.
- CanStorePiiElsewhere? boolean - Indication that you can store the customer’s personally identifiable information (PII) outside of their legislation area. For example, you could store an EU citizen’s PII data in the US.
- HasOptedOutGeoTracking? boolean - Preference to not track geolocation on mobile devices.
- BirthDate? string - The customer’s birthdate.
- DeathDate? string - The customer’s death date.
- ConvictionsCount? int - The number of convictions for the customer.
- ChildrenCount? int - The number of children the customer has.
- MilitaryService? string - Indicates whether the customer has served in the military.
- IsHomeOwner? boolean - Indicates whether the customer owns a home.
- Occupation? string - The customer’s occupation. Maximum size is 150 characters.
- Website? string - The URL for the customer’s website.
- IndividualsAge? string - Indicates whether the customer is considered to be a minor.
- LastViewedDate? string - The timestamp for when the current user last viewed this record.
- MasterRecordId? string - If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or hasn’t been deleted, the value is null.
- ConsumerCreditScore? int - The person's credit score (for example, 740).
- ConsumerCreditScoreProviderName? string - The name of the company that provided the credit score.
- InfluencerRating? int - A measure of the person's influence, irrespective of how we do business with them.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InstalledMobileAppSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Status? string - Current status of the record
- UserId? string - ID of the user associated with the record
- ConnectedApplicationId? string - ID of the associated connected application
- Version? string - Version
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InventoryItemReservationSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InventoryItemReservationName? string - Name of the inventory item reservation
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- InventoryReservationId? string - ID of the associated inventory reservation
- ItemReservationSourceId? string - ID of the associated item reservation source
- ProductId? string - ID of the associated product
- StockKeepingUnit? string - Stock keeping unit
- Quantity? decimal - Quantity associated with the record
- ReservedAtLocationId? string - ID of the associated reserved at location
- ErrorMessage? string - Error message associated with the record
- ErrorCode? string - Error code associated with the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InventoryReservationShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InventoryReservationSObject
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InventoryReservationName? string - Name of the inventory reservation
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- ReservationDate? string - Date of the reservation
- ReservationDurationInSeconds? int - Reservation duration in seconds
- ReservationIdentifier? string - Reservation identifier
- ReservationSourceId? string - ID of the associated reservation source
- IsAsyncOperationInProgress? boolean - Indicates whether the record is async operation in progress (true) or not (false)
- IsSuccess? boolean - Indicates whether the record is success (true) or not (false)
- ErrorMessage? string - Error message associated with the record
- ErrorCode? string - Error code associated with the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InvoiceId? string - ID of the associated invoice
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceLineFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceLineHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- InvoiceLineId? string - ID of the associated invoice line
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceLineSObject
Represents the amount that a buyer must pay for a product, service, or fee. Invoice lines are created based on the amount of an order line.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the invoice line.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- InvoiceId? string - The invoice that contains this invoice line.
- ReferenceEntityItemId? string - The order item or adjustment item that created the invoice line.
- GroupReferenceEntityItemId? string - Grouping field for adjustment line items.
- LineAmount? decimal - Line amount
- Quantity? decimal - Number of units of the order product that created the invoice line.
- UnitPrice? decimal - Price for one unit of the item on the invoice line.
- ChargeAmount? decimal - Sum of charges made to the invoice line.
- TaxAmount? decimal - Total tax for the invoice line.
- AdjustmentAmount? decimal - Sum of adjustments made to the invoice line.
- InvoiceStatus? string - State of the invoice line. Inherited from the invoice’s status.
- Description? string - Description of the invoice line.
- InvoiceLineStartDate? string - For invoice lines made from a time-based service, the first date of the billing for the service.
- InvoiceLineEndDate? string - For invoice lines made from a time-based service, the end date of the billing for the service.
- ReferenceEntityItemType? string - The type of transaction that created the invoice line.
- ReferenceEntityItemTypeCode? string - The type of object that created the invoice line.
- Product2Id? string - The product that was charged or ordered to create the invoice line.
- RelatedLineId? string - The original invoice line that was adjusted or taxed.check with anoop
- Type? string - Shows the type of transaction for the invoice line.
- TaxName? string - User-defined name for the applied tax.
- TaxCode? string - The code used to calculate tax rate for the invoice line.
- TaxRate? decimal - Percentage value used for calculating tax.
- TaxEffectiveDate? string - The date used to calculate the invoice line’s TaxAmount.
- ChargeTaxAmount? decimal - Charge tax amount
- ChargeAmountWithTax? decimal - Charge amount with tax
- AdjustmentTaxAmount? decimal - Adjustment tax amount
- AdjustmentAmountWithTax? decimal - Adjustment amount with tax
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: InvoiceSObject
Represents a financial document describing the total amount a buyer must pay for goods or services provided.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The user who owns an invoice record.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DocumentNumber? string - System-generated number that is used to organize financial documents. Can be sequential or random.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- ReferenceEntityId? string - The ID of the order or order summary that created this invoice.
- InvoiceNumber? string - System-created unique ID for this invoice.
- BillingAccountId? string - The customer account for this invoice.
- TotalAmount? decimal - The sum TotalAmount values on the invoice’s lines.
- TotalAmountWithTax? decimal - The sum of TotalAmountWithTax values on the invoice’s lines.
- TotalChargeAmount? decimal - The sum of the invoice’s charges.
- TotalAdjustmentAmount? decimal - The sum of the invoice’s adjustment line amounts.
- TotalTaxAmount? decimal - The sum of TaxAmount values on the invoice lines.
- Status? string - The state of the invoice.
- InvoiceDate? string - The date that the invoice was posted. Used with payment terms to determine the invoice’s DueDate. For example, an invoice with an InvoiceDate of 04/01 and Net 30 payment terms would have a DueDate of 05/01.Confirm with Anoop
- DueDate? string - The customer must pay the invoice by the due date. Unpaid invoices past the due date may be sent to collections.
- BillToContactId? string - Inherited from the account’s Bill to Account.
- Description? string - Users can add more information about this invoice. Maximum of 1000 characters.
- Balance? decimal - The outstanding balance for this invoice. Equal to the invoice’s total amount with tax, ignoring payments and adjustments.
- TotalChargeTaxAmount? decimal - Total charge tax amount for the record
- TotalChargeAmountWithTax? decimal - Total charge amount including tax
- TotalAdjustmentTaxAmount? decimal - Total tax amount on adjustments
- TotalAdjustmentAmountWithTax? decimal - Total adjustment amount with tax
- NetCreditsApplied? decimal - Net credits applied
- NetPaymentsApplied? decimal - Net payments applied
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: IPAddressRangeSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IpAddressFeature? string - IP address feature
- IpAddressUsageScope? string - IP address usage scope
- StartAddress? string - Start address
- EndAddress? string - End address
- Description? string - Description of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: KnowledgeableUserSObject
Represents a user identified as knowledgeable about a specific topic, and ranks them relative to other knowledgeable users.
Fields
- Id? string - Unique identifier for the record
- UserId? string - Unique ID for the user in Salesforce.
- TopicId? string - Unique ID for the topic in Salesforce.
- RawRank? int - Rank of this user’s knowledge on the topic relative to other users.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- LastName? string - Last name of the individual
- FirstName? string - First name of the individual
- Salutation? string - Salutation for the individual
- Name? string - Name of the record
- Title? string - Title of the feed item
- Company? string - Company name
- Street? string - Street address
- City? string - City of the address
- State? string - State or province of the address
- PostalCode? string - Postal code of the address
- Country? string - Country of the address
- Latitude? decimal - Latitude coordinate of the address
- Longitude? decimal - Longitude coordinate of the address
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - Compound address field
- Phone? string - Phone number
- MobilePhone? string - Mobile phone number
- Fax? string - Fax number
- Email? string - Email address
- Website? string - Website URL
- Description? string - Description of the record
- LeadSource? string - Source of the lead
- Status? string - Current status of the record
- Industry? string - Industry of the account
- Rating? string - Rating of the record
- AnnualRevenue? decimal - Annual revenue of the account
- NumberOfEmployees? int - Number of employees
- OwnerId? string - ID of the user who owns the record
- IsConverted? boolean - Indicates whether the record has been converted (true) or not (false)
- ConvertedDate? string - Date when the record was converted
- ConvertedAccountId? string - ID of the converted account
- ConvertedContactId? string - ID of the converted contact
- ConvertedOpportunityId? string - ID of the converted opportunity
- IsUnreadByOwner? boolean - Indicates whether the record is unread by the owner (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Jigsaw? string - Data.com key
- JigsawContactId? string - ID of the associated jigsaw contact
- CleanStatus? string - Status of the clean
- CompanyDunsNumber? string - Company DUNS number
- DandbCompanyId? string - ID of the associated dandb company
- EmailBouncedReason? string - Email bounced reason
- EmailBouncedDate? string - Date of the email bounced
- IndividualId? string - ID of the associated individual
- SICCode__c? string - SIC code c
- ProductInterest__c? string - Product interest c
- Primary__c? string - Primary c
- CurrentGenerators__c? string - Current generators c
- NumberofLocations__c? decimal - Numberof locations c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadCleanInfoSObject
Stores the metadata Data.com Clean uses to determine a lead record’s clean status. Helps you automate the cleaning or related processing of lead records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Field label is Lead Clean Info Name. The name of the lead. Maximum size is 255 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LeadId? string - The unique, system-generated ID assigned when the lead record was created.
- LastMatchedDate? string - The date the lead record was last matched and linked to a Data.com record.
- LastStatusChangedDate? string - The date on which the record’s Clean Status field value was last changed.
- LastStatusChangedById? string - The ID of who or what last changed the record’s Clean Status field value: a Salesforce user or a Clean job.
- IsInactive? boolean - Indicates whether the lead has been reported to Data.com as Inactive (true) or not (false).
- FirstName? string - The lead’s first name.
- LastName? string - The lead’s last name.
- Email? string - The lead’s email address.
- Phone? string - The phone number for the lead.
- Street? string - Details for the billing address of the lead.
- City? string - Details for the billing address of the lead.
- State? string - Details for the billing address of the lead.
- PostalCode? string - Details for the billing address of the lead.
- Country? string - Details for the billing address of the lead.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of a billing address. Data not currently provided.
- Longitude? decimal - Used with Latitude to specify the precise geolocation of a billing address. Data not currently provided.
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - The compound form of the address. Read-only. See Address Compound Fields for details on compound address fields.
- Title? string - The lead’s title.
- AnnualRevenue? decimal - Estimated annual revenue of the lead.
- NumberOfEmployees? int - The number of employees working at the lead.
- Industry? string - The industry the lead belongs to.
- CompanyName? string - The name of the company.
- CompanyDunsNumber? string - The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking.
- ContactStatusDataDotCom? string - The status of the contact associated with the lead per Data.com. Values are: Contact is Active per Data.com, Phone is Wrong per Data.com , Email is Wrong per Data.com, Phone and Email are Wrong per Data.com, Contact Not at Company per Data.com, Contact is Inactive per Data.com, Company this contact belongs to is out of business per Data.com, Company this contact belongs to never existed per Data.com or Email address is invalid per Data.com.
- IsReviewedName? boolean - Indicates whether the lead’s Name field value is in a Reviewed state (true) or not (false).
- IsReviewedEmail? boolean - Indicates whether the lead’s Email field value is in a Reviewed state (true) or not (false).
- IsReviewedPhone? boolean - Indicates whether the lead’s Phone field value is in a Reviewed state (true) or not (false).
- IsReviewedAddress? boolean - Indicates whether the lead’s Address field value is in a Reviewed state (true) or not (false).
- IsReviewedTitle? boolean - Indicates whether the lead’s Title field value is in a Reviewed state (true) or not (false).
- IsReviewedAnnualRevenue? boolean - Indicates whether the lead’s Annual Revenue field value is in a Reviewed state (true) or not (false).
- IsReviewedNumberOfEmployees? boolean - Indicates whether the lead’s No. of Employees field value is in a Reviewed state (true) or not (false).
- IsReviewedIndustry? boolean - Indicates whether the lead’s Industry field value is in a Reviewed state (true) or not (false).
- IsReviewedCompanyName? boolean - Indicates whether the lead’s Company Name field value is in a Reviewed state (true) or not (false).
- IsReviewedCompanyDunsNumber? boolean - Indicates whether the lead’s Company D-U-N-S Number field value is in a Reviewed state (true) or not (false).
- IsReviewedDandBCompanyDunsNumber? boolean - Indicates whether the lead’s D&B Company D-U-N-S Number field value is in a Reviewed state (true) or not (false).
- IsDifferentFirstName? boolean - Indicates whether the lead’s First Name field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentLastName? boolean - Indicates whether the lead’s Last Name field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentEmail? boolean - Indicates whether the lead’s Email field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentPhone? boolean - Indicates whether the lead’s Phone field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentStreet? boolean - Indicates whether the lead’s Street field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCity? boolean - Indicates whether the lead’s City field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentState? boolean - Indicates whether the lead’s State field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentPostalCode? boolean - Indicates whether the lead’s Postal Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCountry? boolean - Indicates whether the lead’s Country field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentTitle? boolean - Indicates whether the lead’s Title field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentAnnualRevenue? boolean - Indicates whether the lead’s AnnualRevenue field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentNumberOfEmployees? boolean - Indicates whether the lead’s No. of Employees field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentIndustry? boolean - Indicates whether the lead’s Industry field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCompanyName? boolean - Indicates whether the lead’s Company Name field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCompanyDunsNumber? boolean - Indicates whether the lead’s Company D-U-N-S Number field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentDandBCompanyDunsNumber? boolean - Indicates whether the lead’s D&B Company D-U-N-S Number field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentStateCode? boolean - Indicates whether the account’s State Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- IsDifferentCountryCode? boolean - Indicates whether the account’s Country Code field value is different from the corresponding value on its matched Data.com record (true) or not (false).
- CleanedByJob? boolean - Indicates whether the lead record was cleaned by a Data.com Clean job (true) or not (false).
- CleanedByUser? boolean - Indicates whether the lead record was cleaned by a Salesforce user (true) or not (false).
- DandBCompanyDunsNumber? string - The D-U-N-S Number on the D&B Company record (if any) that is linked to the lead.
- DataDotComCompanyId? string - The ID Data.com maintains for the company associated with the lead.
- IsFlaggedWrongName? boolean - Indicates whether the lead’s Name field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongEmail? boolean - Indicates whether the lead’s Email field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongPhone? boolean - Indicates whether the lead’s Phone field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongAddress? boolean - Indicates whether the lead’s Address field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongTitle? boolean - Indicates whether the lead’s Title field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongAnnualRevenue? boolean - Indicates whether the lead’s Annual Revenue field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongNumberOfEmployees? boolean - Indicates whether the lead’s No. of Employees field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongIndustry? boolean - Indicates whether the lead’s Industry field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongCompanyName? boolean - Indicates whether the lead’s Company Name field value is flagged as wrong to Data.com (true) or not (false).
- IsFlaggedWrongCompanyDunsNumber? boolean - Indicates whether the lead’s Company D-U-N-S Number field value is flagged as wrong to Data.com (true) or not (false).
- DataDotComId? string - The ID Data.com maintains for the contact associated with the lead.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LeadId? string - ID of the associated lead
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadShareSObject
Represents a sharing entry on a Lead.
Fields
- Id? string - Unique identifier for the record
- LeadId? string - ID of the Lead associated with this sharing entry. This field can’t be updated.
- UserOrGroupId? string - ID of the User or Group that has been given access to the Lead. This field can’t be updated.
- LeadAccessLevel? string - Level of access that the User or Group has to the Lead. The possible values are: Read Edit All This value is not valid when creating or updating these records.
- RowCause? string - Reason that this sharing entry exists. You can only write a value in this field when its value is either omitted or set to Manual (default). You can create a value for this field in API versions 32.0 and later with the correct organization-wide sharing settings.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadSObject
Represents a prospect or lead.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- MasterRecordId? string - If this record was deleted as the result of a merge, this field contains the ID of the record that was kept. If this record was deleted for any other reason, or has not been deleted, the value is null.When using Apex triggers to determine which record was deleted in a merge event, this field’s value is the ID of the record that remains in Trigger.old. In Trigger.new, the value is null.
- LastName? string - Required. Last name of the lead up to 80 characters.
- FirstName? string - The lead’s first name up to 40 characters.
- Salutation? string - Salutation for the lead.
- Name? string - Concatenation of FirstName, MiddleName, LastName, and Suffix up to 203 characters, including whitespaces.
- Title? string - Title for the lead, such as CFO or CEO.
- Company? string - Required. The lead’s company. If person account record types have been enabled, and if the value of Company is null, the lead converts to a person account.
- Street? string - Street number and name for the address of the lead.
- City? string - City for the lead’s address.
- State? string - State for the address of the lead.
- PostalCode? string - Postal code for the address of the lead. Label is Zip/Postal Code.
- Country? string - The lead’s country.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of an address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see .
- Longitude? decimal - Used with Latitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see .
- GeocodeAccuracy? string - Accuracy level of the geocode for the address. For details on geolocation compound fields, see .
- Address? record {} - The compound form of the address. Read-only. For details on compound address fields, see Address Compound Fields.
- Phone? string - The lead’s phone number.
- MobilePhone? string - The lead’s mobile phone number.
- Fax? string - The lead’s fax number.
- Email? string - The lead’s email address.
- Website? string - Website for the lead.
- PhotoUrl? string - Path to be combined with the URL of a Salesforce instance (Example: https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the lead. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the lead. Empty if Social Accounts and Contacts isn't enabled or if Social Accounts and Contacts has been disabled for the requesting user.
- Description? string - The lead’s description.
- LeadSource? string - The lead’s source.
- Status? string - Status code for this converted lead. Status codes are defined in Status and represented in the API by the LeadStatus object.
- Industry? string - Industry in which the lead works.
- Rating? string - Rating of the lead.
- AnnualRevenue? decimal - Annual revenue for the lead’s company.
- NumberOfEmployees? int - Number of employees at the lead’s company. Label is Employees.
- OwnerId? string - ID of the lead’s owner.
- IsConverted? boolean - Indicates whether the lead has been converted (true) or not (false). Label is Converted.
- ConvertedDate? string - Date on which this lead was converted.
- ConvertedAccountId? string - Object reference ID that points to the account into which the lead converted.
- ConvertedContactId? string - Object reference ID that points to the contact into which the lead converted.
- ConvertedOpportunityId? string - Object reference ID that points to the opportunity into which the lead has been converted.
- IsUnreadByOwner? boolean - If true, lead has been assigned, but not yet viewed. See Unread Leads for more information. Label is Unread By Owner.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastActivityDate? string - Value is the most recent of either: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- Jigsaw? string - References the ID of a contact in Data.com. If a lead has a value in this field, it means that a contact was imported as a lead from Data.com. If the contact (converted to a lead) was not imported from Data.com, the field value is null. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key.The Jigsawfield is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field.
- JigsawContactId? string - ID of the associated jigsaw contact
- CleanStatus? string - Indicates the record’s clean status compared with Data.com. Values include: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus appear with different labels on the lead record. Matched appears as In Sync Acknowledged appears as Reviewed Pending appears as Not Compared
- CompanyDunsNumber? string - The Data Universal Numbering System (D-U-N-S) number, which is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. Industries and companies use D-U-N-S numbers as a global standard for business identification and tracking. Maximum size is 9 characters.This field is only available to organizations that use Data.com Prospector or Data.com Clean.
- DandbCompanyId? string - ID of the associated dandb company
- EmailBouncedReason? string - If bounce management is activated and an email sent to the lead bounced, the reason for the bounce.
- EmailBouncedDate? string - If bounce management is activated and an email sent to the lead bounced, the date and time of the bounce.
- IndividualId? string - ID of the data privacy record associated with this lead. This field is available if you enabled Data Protection and Privacy in Setup.
- IsPriorityRecord? boolean - Indicates whether the record is priority record (true) or not (false)
- SICCode__c? string - SIC code c
- ProductInterest__c? string - Product interest c
- Primary__c? string - Primary c
- CurrentGenerators__c? string - Current generators c
- NumberofLocations__c? decimal - Numberof locations c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LeadStatusSObject
Represents the status of a Lead, such as Open, Qualified, or Converted.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - Master label for this lead status value. This display value is the internal label that does not get translated.
- ApiName? string - Uniquely identifies a picklist value so it can be retrieved without using an id or master label.
- SortOrder? int - Number used to sort this value in the lead status picklist. These numbers are not guaranteed to be sequential, as some previous lead status values might have been deleted.
- IsDefault? boolean - Indicates whether this is the default lead status value (true) or not (false) in the picklist.
- IsConverted? boolean - Indicates whether this lead status value represents a converted lead (true) or not (false). Multiple lead status values can represent a converted lead.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LegalEntityFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LegalEntityHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LegalEntityId? string - ID of the associated legal entity
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LegalEntityShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LegalEntitySObject
Represents the way an organization is structured. An organization can be a single legal entity or it can comprise more than one legal entity.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the record owner.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the legal entity.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- CompanyName? string - The name of the company that this legal entity represents.
- Description? string - The description of the legal entity.
- Status? string - The status of the legal entity.
- LegalEntityStreet? string - Legal entity street
- LegalEntityCity? string - Legal entity city
- LegalEntityState? string - Legal entity state
- LegalEntityPostalCode? string - Legal entity postal code
- LegalEntityCountry? string - Legal entity country
- LegalEntityLatitude? decimal - Legal entity latitude
- LegalEntityLongitude? decimal - Legal entity longitude
- LegalEntityGeocodeAccuracy? string - Legal entity geocode accuracy
- LegalEntityAddress? record {} - The address of the company that this legal entity represents. This is a compound field of type Address and combines these fields: LegalEntityCity, LegalEntityCountry, LegalEntityGeocodeAccuracy, LegalEntityLatitude, LegalEntityLongitude, LegalEntityPostalCode, LegalEntityState, and LegalEntityStreet. For more information, see Address Compound Fields.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningExitByPageMetricsSObject
.Represents standard pages users switched from Lightning Experience to Salesforce most frequently.
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date user viewed page in Lightning Experience.
- UserId? string - UserId of user who viewed page.
- PageName? string - Name of page user viewed.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RecordCount? int - Total number of pages where the switch occured.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningExperienceThemeSObject
Represents information for a theme in Lightning Experience.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the theme in the API. This name can contain only underscores and alphanumeric characters and must be unique in your organization. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. The label corresponds to the theme name in the user interface. Limit: 70 characters.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - Required. Language of the label. Possible values are: da (Danish) de (German) en_US (English) es (Spanish) es_MX (Spanish - Mexico) fi (Finnish) fr (French) it (Italian) ja (Japanese) ko (Korean) nl_NL (Dutch) no (Norwegian) pt_BR (Portuguese (Brazil)) ru (Russian) sv (Swedish) th (Thai) zh_CN (Chinese - Simplified) zh_TW (Chinese - Traditional)
- MasterLabel? string - Required. The name of the theme. Specify up to 70 characters.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- DefaultBrandingSetId? string - The ID of the default branding set.
- ShouldOverrideLoadingImage? boolean - Indicates whether a custom image overrides the Salesforce loading image (true) or not (false).
- Description? string - The description of the theme. Limit: 1,000 characters.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningOnboardingConfigSObject
Represents the feedback provided when users switch from Lightning Experience to Salesforce Classic. Admins can customize the question, how frequently the form appears, and where the feedback is stored in Chatter from the Adoption Assistance page in Lightning Experience Setup.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - Indicates the language used in the org where the feedback form was created.
- MasterLabel? string - The master label for the prompt. Maximum of 80 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CustomQuestion? string - Text of the custom question added by the admin. Maximum of 1,000 characters.
- CollaborationGroupId? string - The ID of the Chatter Group where the user feedback is posted.
- FeedbackFormDaysFrequency? int - The number of days between showing the feedback form when a user switches. A value of 0 indicates that the form is shown for every switch. Maximum of 30.
- SendFeedbackToSalesforce? boolean - Indicates if the user feedback can be shared with Salesforce. If yes, share the feedback with Salesforce. If no, the feedback is only shared in the Chatter Group chosen when customizing the form. The default value is false.
- IsCustom? boolean - Indicates if a feedback form includes a custom question yes or not no.
- PromptDelayTime? int - Indicates the amount of time in seconds to delay between instances of all prompts, both org- and Salesforce-created. Minimum of 0 hours and 0 minutes. Maximum of 99 hours and 59 minutes.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningToggleMetricsSObject
Represents users who switched from Lightning Experience back to Salesforce Classic.
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date user switched.
- UserId? string - UserId of user who switched.
- Action? string - User switched from Lightning Experience to Salesforce Classic or from Salesforce Classic to Lightning Experience.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RecordCount? int - Number of user switches.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningUriEventSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- Operation? string - Operation associated with the record
- QueriedEntities? string - Entities that were queried
- AppName? string - Name of the app
- ConnectionType? string - Type of the connection
- DeviceId? string - ID of the associated device
- DeviceModel? string - Device model
- DevicePlatform? string - Device platform
- DeviceSessionId? string - ID of the associated device session
- Duration? decimal - Duration of the record
- EffectivePageTime? decimal - Effective page time
- HasEffectivePageTimeDeviation? boolean - Indicates whether the record has effective page time deviation (true) or not (false)
- EffectivePageTimeDeviationErrorType? string - Type of the effective page time deviation error
- EffectivePageTimeDeviationReason? string - Effective page time deviation reason
- UserAgent? string - User agent string of the client application
- OsName? string - Name of the os
- OsVersion? string - Os version
- PageStartTime? string - Page start time
- PageUrl? string - Page URL
- PreviousPageAppName? string - Name of the previous page app
- PreviousPageEntityId? string - ID of the associated previous page entity
- PreviousPageEntityType? string - Type of the previous page entity
- PreviousPageUrl? string - Previous page URL
- SdkAppType? string - Type of the sdk app
- SdkAppVersion? string - Sdk app version
- SdkVersion? string - Sdk version
- RecordId? string - ID of the associated record
- UserType? string - Type of the user
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningUriEventStreamSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- Operation? string - Operation associated with the record
- QueriedEntities? string - Entities that were queried
- AppName? string - Name of the app
- ConnectionType? string - Type of the connection
- DeviceId? string - ID of the associated device
- DeviceModel? string - Device model
- DevicePlatform? string - Device platform
- DeviceSessionId? string - ID of the associated device session
- Duration? decimal - Duration of the record
- EffectivePageTime? decimal - Effective page time
- HasEffectivePageTimeDeviation? boolean - Indicates whether the record has effective page time deviation (true) or not (false)
- EffectivePageTimeDeviationErrorType? string - Type of the effective page time deviation error
- EffectivePageTimeDeviationReason? string - Effective page time deviation reason
- UserAgent? string - User agent string of the client application
- OsName? string - Name of the os
- OsVersion? string - Os version
- PageStartTime? string - Page start time
- PageUrl? string - Page URL
- PreviousPageAppName? string - Name of the previous page app
- PreviousPageEntityId? string - ID of the associated previous page entity
- PreviousPageEntityType? string - Type of the previous page entity
- PreviousPageUrl? string - Previous page URL
- SdkAppType? string - Type of the sdk app
- SdkAppVersion? string - Sdk app version
- SdkVersion? string - Sdk version
- RecordId? string - ID of the associated record
- UserType? string - Type of the user
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningUsageByAppTypeMetricsSObject
Represents number of users on Lightning Experience and Salesforce Mobile.
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date user accessed Lightning Experience or Salesforce Mobile.
- UserId? string - UserId for user accessing Lightning Experience or Salesforce Mobile.
- AppExperience? string - User’s app (Lightning Experience or Salesforce Mobile).
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningUsageByBrowserMetricsSObject
Represents Lightning Experience usage grouped by user’s browser.
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date user accessed Lightning Experience.
- PageName? string - Page user viewed in Lightning Experience.
- Browser? string - Browser used to access Lightning Experience.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RecordCountEPT? int - Record count ept
- TotalCount? int - Total number of pages accessed in Lightning Experience.
- SumEPT? int - Sum ept
- EptBinUnder3? int - Ept bin under 3
- EptBin3To5? int - Ept bin 3 to 5
- EptBin5To8? int - Ept bin 5 to 8
- EptBin8To10? int - Ept bin 8 to 10
- EptBinOver10? int - Ept bin over 10
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningUsageByFlexiPageMetricsSObject
Represents custom pages users viewed most frequently in Lightning Experience.
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date user viewed page in Lightning Experience.
- FlexiPageType? string - Custom page type.
- FlexiPageNameOrId? string - Name or Id of custom page user viewed in Lightning Experience.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RecordCountEPT? int - Record count ept
- TotalCount? int - Total number of custom pages viewed.
- MedianEPT? int - Median ept
- SumEPT? int - Sum ept
- EptBinUnder3? int - Ept bin under 3
- EptBin3To5? int - Ept bin 3 to 5
- EptBin5To8? int - Ept bin 5 to 8
- EptBin8To10? int - Ept bin 8 to 10
- EptBinOver10? int - Ept bin over 10
- CoresBinUnder2? int - Cores bin under 2
- CoresBin2To4? int - Cores bin 2 to 4
- CoresBin4To8? int - Cores bin 4 to 8
- CoresBinOver8? int - Cores bin over 8
- DownlinkBinUnder3? int - Downlink bin under 3
- DownlinkBin3To5? int - Downlink bin 3 to 5
- DownlinkBin5To8? int - Downlink bin 5 to 8
- DownlinkBin8To10? int - Downlink bin 8 to 10
- DownlinkBinOver10? int - Downlink bin over 10
- RttBinUnder50? int - Rtt bin under 50
- RttBin50To150? int - Rtt bin 50 to 150
- RttBinOver150? int - Rtt bin over 150
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LightningUsageByPageMetricsSObject
Represents standard pages users viewed most frequently in Lightning Experience.
Fields
- Id? string - Unique identifier for the record
- MetricsDate? string - Date user viewed page in Lightning Experience.
- UserId? string - UserId of user who viewed page.
- PageName? string - Name of page user viewed.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RecordCountEPT? int - Record count ept
- TotalCount? int - Total number of pages viewed.
- SumEPT? int - Sum ept
- EptBinUnder3? int - Ept bin under 3
- EptBin3To5? int - Ept bin 3 to 5
- EptBin5To8? int - Ept bin 5 to 8
- EptBin8To10? int - Ept bin 8 to 10
- EptBinOver10? int - Ept bin over 10
- CoresBinUnder2? int - Cores bin under 2
- CoresBin2To4? int - Cores bin 2 to 4
- CoresBin4To8? int - Cores bin 4 to 8
- CoresBinOver8? int - Cores bin over 8
- DownlinkBinUnder3? int - Downlink bin under 3
- DownlinkBin3To5? int - Downlink bin 3 to 5
- DownlinkBin5To8? int - Downlink bin 5 to 8
- DownlinkBin8To10? int - Downlink bin 8 to 10
- DownlinkBinOver10? int - Downlink bin over 10
- RttBinUnder50? int - Rtt bin under 50
- RttBin50To150? int - Rtt bin 50 to 150
- RttBinOver150? int - Rtt bin over 150
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListEmailChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Subject? string - Subject line of the record
- HtmlBody? string - HTML body
- TextBody? string - Text body
- FromName? string - Name of the from
- FromAddress? string - From address
- Status? string - Current status of the record
- HasAttachment? boolean - Indicates whether the record has attachment (true) or not (false)
- ScheduledDate? string - Date of the scheduled
- TotalSent? int - Total sent
- CampaignId? string - ID of the associated campaign
- IsTracked? boolean - Indicates whether the record is tracked (true) or not (false)
- RelatedToId? string - ID of the related record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListEmailIndividualRecipientSObject
For a list email in Salesforce, represents a recipient. Each record represents a link from a list email to exactly one recipient for that list email. Recipients can be contacts, leads, or campaign members. Has a one-to-many relationship with ListEmail.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The auto-generated name of the list email recipient source.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ListEmailId? string - The related list email record. Required on record creation; read-only otherwise.
- RecipientId? string - the contact, lead, person account, or campaign member ID of the individual list email recipient.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListEmailRecipientSourceSObject
For a list email in Salesforce, represents the dynamically defined sources of recipient email addresses. Each record represents a link to a single list view or campaign that is examined when the list email is sent. Has a one-to-many relationship with ListEmail.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The auto-generated name of the list email recipient source.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ListEmailId? string - The related list email record. Required on record creation; read-only otherwise.
- SourceListId? string - Required. The id of a list view to send the list email to. Read-only except when list email is in draft state.
- SourceType? string - Required. Read-only except when list email is in draft state.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListEmailShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListEmailSObject
Represents a list email sent from Salesforce, or sent from Pardot and synced to Salesforce. When the list email is sent, the recipients are generated by combining recipients in ListEmailIndividualRecipients and ListEmailRecipientSource. Duplicate and other invalid recipients are removed. The result is the recipients who are actually sent any given list email. Has a one-to-many relationship with ListEmailRecipientSource and ListEmailIndividualRecipient.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - References Group and User. This field is null for emails sent from Pardot.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Read-only except when list email is in draft state.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed. This field is null for emails sent from Pardot.
- LastReferencedDate? string - The timestamp that indicates when the current user last viewed a record that is related to this list email. This field is null for emails sent from Pardot.
- Subject? string - Read-only except when list email is in draft state. This field is null for emails sent from Pardot.
- HtmlBody? string - The body of the list email. This field is null for emails sent from Pardot.
- TextBody? string - Read-only except when list email is in draft state. This field is null for emails sent from Pardot.
- FromName? string - Read-only except when list email is in draft state. Validated against user’s addresses. This field is null for emails sent from Pardot.
- FromAddress? string - Read-only except when list email is in draft state. Validated against user’s addresses.
- Status? string - Read-only except when list email is in draft state.
- HasAttachment? boolean - Read-only. Defaulted on create and update. Value is true if the list email has an attachment. This field is null for emails sent from Pardot.
- ScheduledDate? string - Read-only. If null and Status is set to Scheduled, defaults to created time.
- TotalSent? int - Read-only. The total number of list emails sent, including bounced, opted-out, and invalid To: addresses.
- CampaignId? string - The ID of the related campaign. This field is available in API version 42.0 and later.
- IsTracked? boolean - Indicates if email tracking was on when the list email was sent. This field is blank for emails sent from Pardot and synced to Salesforce. This field is null for emails sent from Pardot.
- RelatedToId? string - ID of the related record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListViewChartInstanceSObject
Retrieves metadata for all standard and custom charts for a given entity in context of a given list view.
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - Reserved for future use.
- ListViewChartId? string - ID of the chart created by a user. For standard charts, this is null.
- Label? string - The display name of the chart.
- DeveloperName? string - API name of the chart. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- SourceEntity? string - API name of the entity to which the chart is related. Required to query ListViewChartInstance.
- ListViewContextId? string - ID of the list view in context of which the chart is generated. Required to query ListViewChartInstance.
- ChartType? string - The type of chart to create. The supported chart types are horizontal bar chart, vertical bar chart, and donut chart.
- IsLastViewed? boolean - Indicates if a chart is the last viewed by a user.
- DataQuery? string - The SOQL query that can be executed to fetch the data for drawing a chart.
- DataQueryWithoutUserFilters? string - The SOQL query that can be executed to fetch the data for drawing a chart, without user filters.
- IsEditable? boolean - Indicates if the chart can be edited. Standard charts are not editable.
- IsDeletable? boolean - Indicates if the chart can be deleted.
- GroupingField? string - The field that’s used to divide the data into collections. The field has to be supported by SOQL GROUP BY functionality. GroupingField can’t be the same as AggregateField.
- AggregateField? string - The field that’s used for calculating data on each group. AggregateField can’t be the same as GroupingField.
- AggregateType? string - The type of calculations to run on each group. The supported AggregateType values are Count, Sum, and Avg.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListViewChartSObject
Represents a graphical chart that’s displayed on Salesforce for Android, iOS, and mobile web list views. The chart aggregates data that is filtered based on the list view that’s currently displayed.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SobjectType? string - The API name of the sObject for the chart.
- DeveloperName? string - The fully qualified developer name of the chart.
- Language? string - The language of the MasterLabel.
- MasterLabel? string - The label for the chart.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OwnerId? string - The ID of the user who owns the chart.
- ChartType? string - The type of chart to create. The supported chart types are horizontal bar chart, vertical bar chart, and donut chart.
- GroupingField? string - The field that’s used to divide the data into collections. The field has to be supported by SOQL GROUP BY functionality. GroupingField can’t be the same as AggregateField.
- AggregateField? string - The field that’s used for calculating data on each group. AggregateField can’t be the same as GroupingField.
- AggregateType? string - The type of calculations to run on each group. The supported AggregateType values are Count, Sum, and Avg.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListViewEventSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- LoginHistoryId? string - ID of the login history record associated with the event
- RowsProcessed? decimal - Number of rows processed
- QueriedEntities? string - Entities that were queried
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- ListViewId? string - ID of the associated list view
- Name? string - Name of the record
- DeveloperName? string - Unique developer name for the record
- EventSource? string - Source of the event
- OwnerId? string - ID of the user who owns the record
- Scope? string - Scope of the record
- OrderBy? string - Order by
- ColumnHeaders? string - Column headers
- NumberOfColumns? int - Number of columns
- FilterCriteria? string - Filter criteria
- Records? string - Records associated with the result
- AppName? string - Name of the app
- ExecutionIdentifier? string - Execution identifier
- Sequence? int - Sequence number of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListViewEventStreamSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- LoginHistoryId? string - ID of the login history record associated with the event
- RowsProcessed? decimal - Number of rows processed
- QueriedEntities? string - Entities that were queried
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- ListViewId? string - ID of the associated list view
- Name? string - Name of the record
- DeveloperName? string - Unique developer name for the record
- EventSource? string - Source of the event
- OwnerId? string - ID of the user who owns the record
- Scope? string - Scope of the record
- OrderBy? string - Order by
- ColumnHeaders? string - Column headers
- NumberOfColumns? int - Number of columns
- FilterCriteria? string - Filter criteria
- Records? string - Records associated with the result
- AppName? string - Name of the app
- ExecutionIdentifier? string - Execution identifier
- Sequence? int - Sequence number of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ListViewSObject
Represents a list view. A list view specifies a set of records for an object, based on specific criteria.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the list view.
- DeveloperName? string - The fully qualified developer name of the list view.
- NamespacePrefix? string - The namespace of the list view.
- SobjectType? string - The API name of the sObject for the list view.
- IsSoqlCompatible? boolean - Whether the list view can be used with SOQL..
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date and time when the list view was last viewed, with a precision of one second.
- LastReferencedDate? string - The date and time when the list view was last referenced, with a precision of one second.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LiveChatSensitiveDataRuleSObject
Represents a rule for masking or deleting data of a specified pattern. Written as a regular expression (regex).
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - The language of the sensitive data rule.
- MasterLabel? string - Label for the sensitive data rule.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Pattern? string - The pattern of text blocked by the rule. Written as a JavaScript regular expression (regex).
- Replacement? string - The string of characters that replaces the blocked text (if ActionType Replace is selected).
- IsEnabled? boolean - Specifies whether a sensitive data rule is active (true) or not (false). Default value (if none is provided) is false.
- ActionType? string - The action to take on the text (remove or replace) when the sensitive data rule is triggered.
- EnforceOn? int - Determines the roles on which the rule is enforced. The value is determined using bitwise OR operation. There are seven possible values: Rule enforced on Agent Rule enforced on Visitor Rule enforced on Agent and Visitor Rule enforced on Supervisor Rule enforced on Agent and Supervisor Rule enforced on Visitor and Supervisor Rule enforced on Agent, Visitor, and Supervisor
- Description? string - The description of the sensitive data rule—for example, “Block social security numbers.”
- Priority? int - Indicates the priority level of a Chat.
- ProcessingType? string - Type of the processing
- Version? string - Version
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- LocationType? string - Type of the location
- Latitude? decimal - Latitude coordinate of the address
- Longitude? decimal - Longitude coordinate of the address
- Location? record {} - Location of the event
- Description? string - Description of the record
- DrivingDirections? string - Driving directions
- TimeZone? string - Time zone
- ParentLocationId? string - ID of the associated parent location
- PossessionDate? string - Date of the possession
- ConstructionStartDate? string - Date of the construction start
- ConstructionEndDate? string - Date of the construction end
- OpenDate? string - Date of the open
- CloseDate? string - Expected close date
- RemodelStartDate? string - Date of the remodel start
- RemodelEndDate? string - Date of the remodel end
- IsMobile? boolean - Indicates whether the record is mobile (true) or not (false)
- IsInventoryLocation? boolean - Indicates whether the record is inventory location (true) or not (false)
- VisitorAddressId? string - ID of the associated visitor address
- RootLocationId? string - ID of the associated root location
- LocationLevel? int - Location level
- ExternalReference? string - External reference
- ShouldSyncWithOci? boolean - Should sync with oci
- LogoId? string - ID of the associated logo
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationGroupAssignmentSObject
Represents the assignment of a location to a location group.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LocationGroupAssignment? string - The name of the location group assignment.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. A null value can mean that this record has only been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- LocationId? string - (Master-Detail) The associated location.
- LocationGroupId? string - (Master-Detail) The associated location group.
- LocationExternalReference? string - The external reference of the associated location.
- LocationGroupExternalReference? string - The external reference of the associated location group.
- LocationName? string - The name of the associated location.
- LocationGroupName? string - The location group name of the associated location group.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationGroupFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationGroupHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LocationGroupId? string - ID of the associated location group
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationGroupShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationGroupSObject
Represents a group of Omnichannel Inventory locations, providing an aggregate view of inventory availability across those locations. Omnichannel Inventory can create an inventory reservation for an order at the location group level, then assign the reservation to one or more locations in the group as needed.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the user who currently owns this location group. Default value is the API user that created the record.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LocationGroupName? string - The name of the location group.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. A null value can mean that this record has only been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- ExternalReference? string - Used when OCI is integrated with B2C Commerce to associate the location group with an inventory list in B2C Commerce. This value must match the inventory list ID in B2C Commerce.
- IsEnabled? boolean - Indicates whether the location group is in use. If set to false, then inventory functions ignore this location group and its data isn’t synchronized with OCI. The default value is true.
- ShouldSyncWithOci? boolean - Specifies whether to synchronize inventory data for this location group with Omnichannel Inventory. The default value is true.
- Description? string - Description of the location group.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LocationId? string - ID of the associated location
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LocationSObject
Represents a warehouse, service vehicle, work site, or other element of the region where your team performs field service work. In API version 49.0 and later, you can associate activities with specific locations. Activities, such as the tasks and events related to a location, appear in the activities timeline when you view the location detail page. Also in API version 49.0 and later, Work.com users can view Employees as a related list on Location records.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The location’s owner or driver.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the location. For example, Service Van #4.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date the location was last viewed.
- LastReferencedDate? string - The date when the location was last modified. Its label in the user interface is Last Modified Date.
- LocationType? string - Picklist of location types. It has no default values, so you must populate it before creating any location records.
- Latitude? decimal - The latitude of the location.
- Longitude? decimal - The longitude of the location.
- Location? record {} - The geographic location.
- Description? string - A brief description of the location.
- DrivingDirections? string - Directions to the location.
- TimeZone? string - Picklist of available time zones.
- ParentLocationId? string - The location’s parent location. For example, if vans are stored at a warehouse when not in service, the warehouse is the parent location.
- PossessionDate? string - The date the location was purchased.
- ConstructionStartDate? string - Date construction began at the location.
- ConstructionEndDate? string - Date construction ended at the location.
- OpenDate? string - Date the location opened or came into service.
- CloseDate? string - Date the location closed or went out of service.
- RemodelStartDate? string - Date when remodel construction started at the location.
- RemodelEndDate? string - Date when remodel construction ended at the location.
- IsMobile? boolean - Indicates whether the location moves. For example, a truck or tool box.
- IsInventoryLocation? boolean - Indicates whether the location stores parts.This field must be selected if you want to associate the location with product items.
- VisitorAddressId? string - Lookup to an account’s or client’s address.
- RootLocationId? string - (Read Only) The top-level location in the location’s hierarchy.
- LocationLevel? int - The location’s position in a location hierarchy. If the location has no parent or child locations, its level is 1. Locations that belong to a hierarchy have a level of 1 for the root location, 2 for the child locations of the root location, 3 for their children, and so forth.
- ExternalReference? string - Identifier of a location.
- ShouldSyncWithOci? boolean - Indicates whether the location should sync its data with Omnichannel Inventory. The default value is false.
- LogoId? string - A ContentAsset representing a logo for the location.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginAsEventSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- UserType? string - Type of the user
- LoginHistoryId? string - ID of the login history record associated with the event
- Application? string - Application associated with the record
- Browser? string - Browser
- LoginType? string - Type of the login
- Platform? string - Platform associated with the record
- DelegatedUsername? string - Delegated username
- DelegatedOrganizationId? string - ID of the associated delegated organization
- TargetUrl? string - Target URL
- LoginAsCategory? string - Login as category
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginAsEventStreamSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- Application? string - Application associated with the record
- Browser? string - Browser
- DelegatedOrganizationId? string - ID of the associated delegated organization
- DelegatedUsername? string - Delegated username
- LoginAsCategory? string - Login as category
- LoginHistoryId? string - ID of the login history record associated with the event
- LoginType? string - Type of the login
- Platform? string - Platform associated with the record
- TargetUrl? string - Target URL
- UserType? string - Type of the user
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginEventSObject
The documentation has moved to LoginEvent in the Platform Events Developer Guide.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- AdditionalInfo? string - Additional info
- ApiType? string - Type of the API
- ApiVersion? string - API version of the record
- Application? string - Application associated with the record
- AuthServiceId? string - ID of the associated auth service
- Browser? string - Browser
- HttpMethod? string - HTTP method
- CountryIso? string - Country iso
- ForwardedForIp? string - Forwarded for IP
- LoginLatitude? decimal - Login latitude
- LoginLongitude? decimal - Login longitude
- Country? string - Country of the address
- City? string - City of the address
- PostalCode? string - Postal code of the address
- Subdivision? string - Subdivision
- CipherSuite? string - Cipher suite
- ClientVersion? string - Client version
- LoginGeoId? string - ID of the associated login geo
- LoginHistoryId? string - ID of the login history record associated with the event
- LoginType? string - Type of the login
- LoginUrl? string - Login URL
- Platform? string - Platform associated with the record
- Status? string - Current status of the record
- TlsProtocol? string - TLS protocol
- UserType? string - Type of the user
- AuthMethodReference? string - Auth method reference
- LoginSubType? string - Type of the login sub
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginEventStreamSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- AdditionalInfo? string - Additional info
- ApiType? string - Type of the API
- ApiVersion? string - API version of the record
- Application? string - Application associated with the record
- AuthServiceId? string - ID of the associated auth service
- Browser? string - Browser
- CipherSuite? string - Cipher suite
- ClientVersion? string - Client version
- LoginGeoId? string - ID of the associated login geo
- LoginType? string - Type of the login
- LoginUrl? string - Login URL
- Platform? string - Platform associated with the record
- Status? string - Current status of the record
- TlsProtocol? string - TLS protocol
- LoginHistoryId? string - ID of the login history record associated with the event
- UserType? string - Type of the user
- CountryIso? string - Country iso
- HttpMethod? string - HTTP method
- Country? string - Country of the address
- LoginLatitude? decimal - Login latitude
- LoginLongitude? decimal - Login longitude
- City? string - City of the address
- PostalCode? string - Postal code of the address
- Subdivision? string - Subdivision
- AuthMethodReference? string - Auth method reference
- LoginSubType? string - Type of the login sub
- ForwardedForIp? string - Forwarded for IP
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginGeoSObject
Represents the geographic location of the user’s IP address for a login event. Due to the nature of geolocation technology, the accuracy of geolocation fields (for example, country, city, postal code) may vary.
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LoginTime? string - Time of the login attempt, in GMT time zone.
- CountryIso? string - The ISO 3166 code for the country where the user’s IP address is physically located. For more information, see Country Codes - ISO 3166
- Country? string - The country where the user’s IP address is physically located. This value is not localized.
- Latitude? decimal - The latitude where the user’s IP address is physically located.
- Longitude? decimal - The longitude where the user’s IP address is physically located.
- City? string - The city where the user’s IP address is physically located. This value is not localized.
- PostalCode? string - The postal code where the user’s IP address is physically located. This value is not localized.
- Subdivision? string - The name of the subdivision where the user’s IP address is physically located. In the U.S., this value is usually the state name (for example, Pennsylvania). This value is not localized.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginHistorySObject
Represents the login history for all successful and failed login attempts for organizations and enabled portals.
Fields
- Id? string - Unique identifier for the record
- UserId? string - ID of the user logging in. Label is User ID.
- LoginTime? string - Time zone is based on GMT. Label is Login Time.
- LoginType? string - The type of login used to access the session. AppExchange Application (username and password login) Certificate (certificate-based authentication) ChatterCommunityPortalUnPwd (username and password login to Chatter site) ChatterCommunityThirdPartySso (single sign-on to Chatter site) EmployeeLoginToCommunity (employee username and password login to Experience Cloud site) LightningLogin NetworksPortalApiOnly (API login to Experience Cloud site) Oauth, Remote Access Client (OAuth 1.0 authorization) Oauth2, Remote Access 2.0 (OAuth 2.0 authorization) Partner (username and password login to partner portal) PasswordlessLogin (customer or partner passwordless login) Portal (username and password login to portal) PrmPortalThirdPartySso (single sign-on to Partner Relationship Management (PRM) portal) PortalThirdPartySso (single sign-on to portal) PrmPortal (username and password login to PRM portal) Saml (SAML 1.1 login) SamlChatterNetworks (SAML login to Experience Cloud site) SamlCspPortal (SAML login to Customer Service Portal (CSP)) SamlPrmPortal (SAML login to PRM portal) SamlSite (SAML login to site) Saml2 (SAML 2.0 login) SelfService (username and password login to Self-Service portal) ThirdPartySso (authentication provider login) Label is Login Type.
- SourceIp? string - IP address of the machine from which the login request is coming. The address can be an IPv4 or IPv6 address in API version 23.0 or later. In API version 22.0 or earlier, the address is an IPv4 address, and IPv6 addresses are null. Label is Source IP.
- LoginUrl? string - URL from which the login request is coming. Label is Login URL.
- AuthenticationServiceId? string - The 18-character ID for an authentication service for a login event. For example, you can use this field to identify the SAML or authentication provider configuration with which the user logged in. This field is available in API version 34.0 and later. Label is Authentication Service Id.
- LoginGeoId? string - The 18-character ID for the record of the geographic location of the user for a successful or unsuccessful login event. The accuracy of geolocation fields like country, city, or postal code can vary because of the nature of the technology. This field is available in API version 34.0 and later.
- TlsProtocol? string - The TLS protocol used for the login. Possible values are: TLS 1.0 TLS 1.1 TLS 1.2 TLS 1.3 Unknown This field is available in API version 37.0 and later.
- CipherSuite? string - The TLS cipher suite used for the login. Values are OpenSSL-style cipher suite names, with hyphen delimiters. For more information, see OpenSSL Cryptography and SSL/TLS Toolkit. This field is available in API version 37.0 and later.
- OptionsIsGet? boolean - The HTTP method used for the session login is a GET request.
- OptionsIsPost? boolean - The HTTP method used for the session login is a POST request.
- Browser? string - The current browser version. Label is Browser.
- Platform? string - Operating system on the login machine. Label is Platform.
- Status? string - Displays the status of the attempted login. Status is either success or a reason for failure. Label is Status.
- Application? string - The application used to access the organization. Label is Application.
- ClientVersion? string - Version of the API client. Label is Client Version.
- ApiType? string - Indicates the API type, for example Soap Enterprise. Label is API Type.
- ApiVersion? string - Displays the API version used by the client. Label is API Version.
- CountryIso? string - The ISO 3166 code for the country where the user’s IP address is physically located. For more information, see Country Codes - ISO 3166. This field is available in API version 37.0 and later.
- AuthMethodReference? string - The authentication method used by a third-party identification provider for an OpenID Connect single sign-on protocol. This field is available in API version 51.0 and later. Label is Authentication Method Reference.
- LoginSubType? string - Type of the login sub
- ForwardedForIp? string - Forwarded for IP
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LoginIpSObject
Represents a validated IP address.
Fields
- Id? string - Unique identifier for the record
- UsersId? string - The ID of the user associated with this item.
- SourceIp? string - The IP address the user logged in from.
- CreatedDate? string - Date and time when the record was created
- IsAuthenticated? boolean - If true, the user has already been authenticated.
- ChallengeSentDate? string - The date and time that the user was authenticated.
- ChallengeMethod? string - The challenge method used to confirm the user’s identity. Possible values include the following. Email SMS TOTP_CHOICE: The user chooses multi-factor authentication. TOTP_ONLY: The user is required to use multi-factor authentication.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LogoutEventSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LogoutEventStreamSObject
The documentation has moved to LogoutEventStream in the Platform Events Developer Guide.
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: LookedUpFromActivitySObject
This read-only object is displayed as a related list on an activity record (an event or a task); the list contains records that have custom lookup relationships from the activity to another object. This object is not queryable.
Fields
- Id? string - Unique identifier for the record
- AccountId? string - Indicates the ID of the related account, which is determined as follows: The account associated with the WhatId, if it exists; or The account associated with the WhoId, if it exists; otherwise null
- WhoId? string - The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID. The label is Name ID.
- WhatId? string - The WhatId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects. WhatIds are polymorphic. Polymorphic means a WhatId is equivalent to the ID of a related object. The label is Related To ID.
- Subject? string - Contains the subject of the task or event.
- IsTask? boolean - If the value of this field is set to true, then the activity is a task; if the value is set to false, then the activity is an event. Label is Task.
- ActivityDate? string - Indicates one of the following: The due date of a task The date of an event if IsAllDayEvent is set to true
- ActivityDateTime? string - Contains the event’s due date if the IsAllDayEvent flag is set to false. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate. Label is Due Date Time.The value for this field and StartDateTime must match, or one of them must be null.
- OwnerId? string - Indicates the ID of the user or group who owns the activity.
- Status? string - Indicates the current status of a task, such as in progress or complete. Each predefined status field sets a value for IsClosed.
- Priority? string - Indicates the priority of a task, such as high, normal, or low.
- IsHighPriority? boolean - Indicates a high-priority task. This field is derived from the Priority field.
- ActivityType? string - Represents one of the following values: Call, Email, Meeting, or Other. Label is Type. These are default values, and can be changed.
- IsClosed? boolean - Indicates whether a task is closed; value is always false. This field is set indirectly by setting Status on the task—each picklist value has a corresponding IsClosed value. Label is Closed.
- IsAllDayEvent? boolean - If the value of this field is set to true, then the activity is an event spanning a full day, and the ActivityDate defines the date of the event. If the value of this field is set to false, then the activity may be an event spanning less than a full day, or it may be a task. Label is All-Day Event.
- IsVisibleInSelfService? boolean - If the value of this field is set to true, then the activity can be viewed in the self-service portal. Label is Visible in Self-Service.
- DurationInMinutes? int - Indicates the duration of the event or task.
- Location? string - If the activity is an event, then this field represents the location of the event. If the activity is a task, then the value is null.
- Description? string - Contains a description of the event or task. Limit is 32 KB.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CallDurationInSeconds? int - Duration of the call in seconds.
- CallType? string - The type of call being answered: Inbound, Internal, or Outbound.
- CallDisposition? string - Represents the result of a given call; for example, “we’ll call back,” or “call unsuccessful.” Limit is 255 characters.
- CallObject? string - Name of a call center. Limit is 255 characters.
- ReminderDateTime? string - Represents the time at which a reminder is scheduled to fire if IsReminderSet is set to true. If IsReminderSet is set to false, then either the user has deselected the reminder checkbox in the user interface or the reminder has already fired at the time indicated by the value.
- IsReminderSet? boolean - Indicates whether a reminder is set for an activity (true) or not (false).
- EndDateTime? string - Indicates the end date and time of the event or task. Available in versions 27.0 and later. This field is optional, depending on the following: If IsAllDayEvent is true, you can supply a value for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time. If both fields are null, the duration defaults to one day. If IsAllDayEvent is false, a value must be supplied for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time.
- StartDateTime? string - Indicates the start date and time of the event. Available in versions 13.0 and later.
- ActivitySubtype? string - Activity subtype
- CompletedDateTime? string - Date and time when the record was completed
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Description? string - Description of the record
- IsAlohaSupported? boolean - Indicates whether the record is aloha supported (true) or not (false)
- IsLightningSupported? boolean - Indicates whether the record is lightning supported (true) or not (false)
- StartingContext? string - Starting context
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- MacroId? string - ID of the associated macro
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroInstructionChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- MacroId? string - ID of the associated macro
- Operation? string - Operation associated with the record
- Target? string - Target
- Value? string - Value associated with the record
- ValueRecord? string - Value record
- SortOrder? int - Sort order for the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroInstructionSObject
Represents an instruction in a macro. An instruction can specify the object that the macro interacts with, the context or publisher that the macro works within, the operation or action that the macro performs, and the target of the macro’s actions.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the instruction.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MacroId? string - ID of the macro that contains this instruction.
- Operation? string - The action that the macro instruction performs. Valid values are: Select Set Insert Submit Close
- Target? string - The object that’s the target of the operation. For example, the target for the active case tab (Tab.Case) or a quick action, like the Send Email action on the case object (QuickAction.Case.SendEmail).
- Value? string - Value of a field. If the operation is Select, then the value is null, because the operation selects the object on which the macro performs an action. An instruction can contain both a Value field and a ValueRecord field, but only one of these fields can have a value. The other field value must be null.
- ValueRecord? string - ID of the value or record. The ValueRecord can be either a value or a record, but not both. An instruction can contain both a Value field and a ValueRecord field, but only one of these fields can have a value. The other field value must be null.
- SortOrder? int - Order of this instruction in the macro.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroSObject
Represents a macro, which is a set of instructions that tells the system to perform one or more tasks.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the owner of the session record.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the macro.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date and time that the macro record was last viewed.
- LastReferencedDate? string - The date and time that the macro record was last referenced.
- Description? string - Description of what this macro does.
- IsAlohaSupported? boolean - Specifies whether the macro is supported in Salesforce Classic.
- IsLightningSupported? boolean - Specifies whether the macro is supported in Lightning Experience.
- StartingContext? string - The object the macro performs actions on. In Salesforce Classic, macros are supported on objects with both feed-based layouts and quick actions. In Lightning Experience, macros are supported on standard and custom objects that allow quick actions and have a customizable page layout.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroUsageShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MacroUsageSObject
Represents macro usage on a record, including which macro was used, who used it, and how they used it.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the group or user that owns the macro.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the macro.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MacroId? string - ID of the associated macro
- ContextRecord? string - ID of the record on which the macro was run.
- ExecutedInstructionCount? int - The number of macro instructions that ran successfully. If the macro completed successfully, this value is the same as InstructionCount.
- InstructionCount? int - The number of instructions in the macro at the start of execution.
- ExecutionEndTime? string - The time at which macro execution completed.
- UserId? string - ID of the user that ran the macro.
- IsFromBulk? boolean - If true, the macro was run as a bulk macro. When a bulk macro is run on multiple records, usage is recorded per record.
- AppContext? string - Context in which the macro was run. Possible values are: Aloha—Salesforce Classic Lightning—Lightning Experience Unknown
- ConditionCount? int - Number of conditional instructions contained in the macro at execution.
- ExecutionState? string - The end state of macro execution. Possible values are SUCCESS FAILURE CANCELED
- DurationInMs? int - The execution time, in milliseconds, for the macro.
- FailureReason? string - If ExecutionState is failure, this field stores the reason for the failure. Possible values are: ACCESS GENERIC TIMEOUT UNSUPPORTED
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MailmergeTemplateSObject
Represents a mail merge template (a Microsoft Word document) used for performing mail merges for your organization.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- Name? string - Required. Name of this mail merge template.
- Description? string - Required. Text description of this mail merge template. Limit: 255 characters.
- Filename? string - Required. File name of the Microsoft Word document that was uploaded as a mail merge template. Limit: 255 characters in length.
- BodyLength? int - Length of the Microsoft Word document.
- Body? record {} - Required. Microsoft Word document to use as a mail merge template. Due to limitations with Microsoft Word mail merge templates, your client application can specify the Body field when creating these records, but not when updating them. Limit: 5 MB.
- LastUsedDate? string - Date and time when this MailmergeTemplate was last used.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- SecurityOptionsAttachmentScannedForXSS? boolean - Required. True if the attachment has been scanned for a cross site scripting threat.
- SecurityOptionsAttachmentHasXSSThreat? boolean - Required. True if a cross site scripting threat was detected in the attachment.
- SecurityOptionsAttachmentScannedforFlash? boolean - Required. True if the attachment has been scanned for Flash Injection.
- SecurityOptionsAttachmentHasFlash? boolean - Required. True if Flash Injection was detected in the attachment.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ManagedContentChannelSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Type? string - Type or category of the record
- OptionsIsSearchable? boolean - Options is searchable
- OptionsIsCacheControlPublic? boolean - Options is cache control public
- OptionsIsDomainLocked? boolean - Options is domain locked
- Domain? string - Domain
- DomainHostName? string - Name of the domain host
- CacheControlMaxAge? decimal - Cache control max age
- MediaCacheControlMaxAge? decimal - Media cache control max age
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ManagedContentSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PrimaryLanguage? string - Primary language
- ContentKey? string - Content key
- AuthoredManagedContentSpaceId? string - ID of the associated authored managed content space
- ExternalId? string - External identifier for the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ManagedContentSpaceSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- Description? string - Description of the record
- DefaultLanguage? string - Default language
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ManagedContentVariantChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- VariantType? string - Type of the variant
- Language? string - Language associated with the record
- UrlName? string - Name of the URL
- ManagedContentId? string - ID of the associated managed content
- IsReady? boolean - Indicates whether the record is ready (true) or not (false)
- ManagedContentKey? string - Managed content key
- ManagedContentVariantStatus? string - Status of the managed content variant
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ManagedContentVariantSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- VariantType? string - Type of the variant
- Language? string - Language associated with the record
- UrlName? string - Name of the URL
- ManagedContentId? string - ID of the associated managed content
- IsReady? boolean - Indicates whether the record is ready (true) or not (false)
- ManagedContentKey? string - Managed content key
- IsPublished? boolean - Indicates whether the record is published (true) or not (false)
- ManagedContentVariantStatus? string - Status of the managed content variant
- HasLocks? boolean - Indicates whether the record has locks (true) or not (false)
- IsPrimary? boolean - Indicates whether this is the primary record (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MatchingInformationSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- EmailAddress? string - Email address
- ExternalId? string - External identifier for the record
- SFDCIdId? string - ID of the associated sfdc ID
- IsPickedAsPreferred? boolean - Indicates whether the record is picked as preferred (true) or not (false)
- UserId? string - ID of the user associated with the record
- PreferenceUsed? string - Preference used
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MatchingRuleItemSObject
Represents criteria used by a matching rule to identify duplicate records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MatchingRuleId? string - The ID for the matching rule.
- SortOrder? int - The order of the matching rule items for a matching rule.
- Field? string - Indicates which field to compare when determining if a record is similar enough to an existing record to be considered a match.
- MatchingMethod? string - Defines how the fields are compared. Choose between the exact matching method and various fuzzy matching methods. Valid values are: Exact FirstName LastName CompanyName Phone City Street Zip Title For details on each matching method, see “Matching Methods Used with Matching Rules” in the Salesforce Help.
- BlankValueBehavior? string - Specifies how blank fields affect whether the fields being compared are considered matches. Valid values are: MatchBlanks NullNotAllowed (default)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MatchingRuleSObject
Represents a matching rule that is used to identify duplicate records.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SobjectType? string - The object for the matching rule.
- DeveloperName? string - The developer name for the matching rule.
- Language? string - The language selected for your organization.
- MasterLabel? string - The name of the matching rule.
- NamespacePrefix? string - The namespace prefix for matching rules for your organization.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MatchEngine? string - The match engine used by the matching rule.
- BooleanFilter? string - Specifies filter logic conditions.
- Description? string - The description of the matching rule.
- RuleStatus? string - Required. The activation status of the matching rule. Values are: Inactive Deactivating DeactivationFailed Active Activating ActivationFailed The only valid values you can declare when deploying a package are Active and Inactive.
- SobjectSubtype? string - Read-only. Indicates if the matching rule is defined for the Person subtype of Account. Valid values are: PersonAccount None
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingChannelSkillSObject
Junction object that represents an association between MessagingChannel and Skill.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MessagingChannelId? string - ID of the MessagingChannel.
- SkillId? string - ID of the Skill.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingChannelSObject
Represents a communication channel that an end user can use to send a message to an agent. A communication channel can be an SMS number, a Facebook page, or another supported messaging channel.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The developer name for the messaging channel. This value is a concatenation of the messaging platform key and the message type.
- Language? string - Reserved for future use.
- MasterLabel? string - Unique name for the MessagingChannel.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - Reserved for future use.
- ChannelAddressIdentifier? string - Channel address identifier
- MessageType? string - Type of message. Possible values are: Facebook Phone Text WhatsApp
- MessagingPlatformKey? string - Unique key for a channel that the end user can message.
- IsoCountryCode? string - Two-letter ISO 3166-1 alpha-2 code for the country that the phone number is associated with. For example, the code for United States is US.
- IsActive? boolean - Indicates whether a channel is active and can receive messages.
- RoutingType? string - Type used to support Omni-Channel’s different routing methods. OmniQueue (queue-based routing) OmniSkills (skills-based routing) When this value isn’t set, OmniQueue is used.
- TargetQueueId? string - Queue in which incoming conversations are placed while waiting for an agent to accept.
- ConsentType? string - The type of consent, or opt-in, that is required to message users on this channel. This field is available in API version 48.0 and later. Possible values are: DoubleOptIn ExplicitOptIn ImplicitOptIn (default value) The property defaultedOnCreate has been removed in API version 51.0 and later. Now the consent type is defaulted to ImplicitOptIn when the consent type is not set on create only for channels that support consents.
- OptInPrompt? string - Automated response to the end user to prompt them to explicitly opt in to receiving messages.
- DoubleOptInPrompt? string - Automated response to the end user to prompt them to doubly opt in to receiving messages.
- IsRequireDoubleOptIn? boolean - Indicates whether double opt-in is required (true) or not (false) for this Messaging channel.
- InitialResponse? string - First automated response to the customer for a new conversation. (Optional)
- EngagedResponse? string - Automated response to the customer when the conversation is accepted by the agent. (Optional)
- ConversationEndResponse? string - Automated response to the customer when the agent ends the conversation. (Optional)
- OfflineAgentsResponse? string - Reserved for future use.
- OutsideBusinessHoursResponse? string - Reserved for future use.
- BusinessHoursId? string - The operating hours for your business, when agents are available. Available only in orgs that use Einstein Bots.
- IsRestrictedToBusinessHours? boolean - Reserved for future use.
- LinkingPreference? string - Preference for linking a new user that sends a message using this channel. Currently supports contact linking.
- IsLinkedRecordOpenedAsSubTab? boolean - Indicates whether to show the contact as a subtab.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingChannelUsageSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MessagingChannelId? string - ID of the associated messaging channel
- DeploymentType? string - Type of the deployment
- DeploymentStatus? string - Status of the deployment
- ErrorReason? string - Error reason
- RoutingOverride? string - Routing override
- DisabledTime? string - Disabled time
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingConfigurationSObject
Represents the details for a Messaging configuration.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The API name for this Messaging configuration.
- Language? string - The language of this Messaging configuration.
- MasterLabel? string - The label for the Messaging configuration.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MessagingServiceUrl? string - The URL for the Messaging service.
- ProvisioningServiceUrl? string - The URL for the provisioning service.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingDeliveryErrorSObject
Represents a log of triggered outbound failures to verify when a triggered outbound has failed.
Fields
- Id? string - Identifier of the error.
- IsDeleted? boolean - Indicates whether the error has been deleted.
- Name? string - Name of the error. Maximum length is 80 characters.
- CreatedDate? string - Date the error was created.
- CreatedById? string - ID of the user who created the error.
- LastModifiedDate? string - Date when the Messaging error log was last modified.
- LastModifiedById? string - The ID of the user who last modified the error log.
- SystemModstamp? string - System modification time for the Messaging delivery error log.
- MessagingChannelId? string - ID of the MessagingChannel.
- MessagingTemplateId? string - ID of the Messaging template used.
- FlowEntity? string - Flow entity
- FullMessage? string - Plain error text.
- FailureReason? string - The provided reason for why the message failed.
- DestinationPhoneNumber? string - The recipient of the phone call.
- MessagingEndUserId? string - Identifier for the Messaging user.
- FlowVersionId? string - ID of the associated flow version
- Type? string - The kind of event that occurred. Error (Default) Warning
- CorrelationIdentifier? string - Correlation identifier
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingEndUserHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- MessagingEndUserId? string - ID of the associated messaging end user
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingEndUserShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingEndUserSObject
Represents a single address—such as a phone number or Facebook page—communicating with a single Messaging channel.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the owner associated with this Messaging end user.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the Messaging end user.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- MessagingChannelId? string - The ID of the Messaging channel associated with the Messaging end user.
- MessageType? string - Type of message. Possible values are: Facebook Phone Text WhatsApp
- MessagingPlatformKey? string - The phone number or Facebook page ID associated with this Messaging end user.
- Locale? string - Reserved for future use.
- ProfilePictureUrl? string - The URL of the Messaging end user's profile picture.
- HasInitialResponseSent? boolean - Indicates whether an initial response has been sent to the Messaging end user (true) or not (false).
- AccountId? string - ID of the account associated with this Messaging end user.
- ContactId? string - ID of the associated Contact.
- IsoCountryCode? string - The ISO country code associated with the Messaging end user.
- MessagingConsentStatus? string - The consent status of the messaging user. This field is available in API version 48.0 and later. Possible values are: DoublyOptedIn ExplicitlyOptedIn ImplicitlyOptedIn OptedOut
- LeadId? string - ID of the associated lead
- IsFullyOptedIn? boolean - Indicates whether the Messaging end user has opted in to receiving messages (true) or not (false). This field is available in API version 48.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingLinkSObject
Represents the link between a Messaging Channel and where it's shared.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MessagingChannelId? string - ID of the associated messaging channel
- EntityType? string - Possible values are: Account Case Contact CustomEntityDefinition—Custom Object Definition Lead Opportunity
- RecordTypeId? string - ID of the record type
- ShouldAttemptAutoLink? boolean - Should attempt auto link
- ShouldPromptCreate? boolean - Should prompt create
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingSessionFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingSessionHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- MessagingSessionId? string - ID of the associated messaging session
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingSessionShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingSessionSObject
Represents a session on a Messaging channel.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the owner associated with this Messaging session.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of this Messaging session.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- MessagingChannelId? string - The ID of the Messaging channel associated with this Messaging session.
- MessagingEndUserId? string - The ID of the Messaging end user associated with this Messaging session.
- Status? string - The status of the Messaging session. Possible values are: Active Ended New Waiting
- CaseId? string - The ID of the case associated with this Messaging session.
- LeadId? string - The ID of the Lead associated with this Messaging session.
- OpportunityId? string - The ID of the opportunity record associated with this Messaging session.
- AcceptTime? string - The time when an agent accepts an incoming Messaging session.
- StartTime? string - The time when the Messaging session started.
- EndTime? string - The time when the Messaging session ended.
- Origin? string - The origin of this Messaging session. Possible values are: AgentInitiated ConversationClose InboundInitiated OptIn—Opt In Status Change OptOut—Opt Out Status Change TriggeredOutbound
- AgentType? string - The type of agent that is assigned to the Messaging session. Possible values are: Agent Bot BotToAgent—Bot & Agent System—Used for triggered outbound messages
- SessionKey? string - The identifier for the Messaging session.
- TargetUserId? string - The ID of the target user associated with this Messaging session.
- ChannelGroup? string - The group of the associated Messaging channel.
- ChannelIntent? string - The intent of the associated Messaging channel.
- ChannelLocale? string - The locale of the associated Messaging channel.
- ConversationId? string - ID of the associated conversation
- EndUserAccountId? string - The ID of the end user's account record.
- EndUserContactId? string - The ID of the end user's contact record.
- ChannelType? string - The type of the associated Messaging channel. Possible values are: Facebook Phone Text WhatsApp
- ChannelName? string - The name of the associated Messaging channel.
- ChannelKey? string - The unique identifier for the associated Messaging channel.
- PreviewDetails? string - The preview shown to an agent for this Messaging session.
- EndUserMessageCount? int - The number of messages sent by the Messaging end user.
- AgentMessageCount? int - The number of messages sent by the agent during the session.
- ChannelEndUserFormula? string - A concatenation of the Messaging channel and Messaging user.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MessagingTemplateSObject
Represents a Messaging template used to send pre-formatted messages.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The API name for the Messaging template.
- Language? string - The language of the Messaging template.
- MasterLabel? string - The label of the Messaging template.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Message? string - The body text of the Messaging template.
- Description? string - The description of the Messaging template.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MilestoneTypeSObject
Represents a milestone (required step in a customer support process).
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the milestone.
- Description? string - A description of the milestone.
- RecurrenceType? string - The type of recurrence for the milestone.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MlFeatureValueMetricSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Feature? string - Feature
- Date? string - Date
- MetricKey? string - Metric key
- MetricValue? decimal - Metric value
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MLModelFactorComponentSObject
Describes the details of the related MLModelFactor. Typically, this describes a field value or a field range such as “Title = CEO” or “Annual Revenue >10000000”.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ModelFactorId? string - ID of the associated model factor
- ModelId? string - ID of the associated model
- LeftHandDerivedField? string - String version of the LeftHandDerivedField. Builder uses this to get the feature name which is displayed in the scorecard. Derived fields can be different from the LeftHandField or the RIghtHandField. For example, the LeftHandField is PhoneNumber and the derived field is AreaCode. Exposed to public.
- Operator? string - Operators (AIModelMetricOperation). Exposed to public.
- RightHandDerivedField? string - String version of the RightHandDerivedField. Exposed to public.
- Value? string - Represents the actual value for the LeftHandField. Used in the scorecard. Exposed to public.
- SortOrder? int - Exposed to public.
- FeatureType? string - Type of the feature
- FeatureValue? string - Feature value
- FactorLabelKey? string - Factor label key
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MLModelFactorSObject
Describes a significant factor in the creation of the related model. Each MLModelFactor describes either the weight, the importance, or the correlation of this factor.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ModelId? string - ID of the associated model
- Type? string - Type or category of the record
- Weight? decimal - Exposed to public.
- Importance? decimal - Exposed to public.
- Correlation? decimal - Exposed to public.
- FactorType? string - Type of the factor
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MLModelMetricSObject
Contains a statistic about the related model to help compare models against each other. Different statistics include Recall, Precision, RSquared, and auROC.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ModelId? string - ID of the associated model
- MetricType? string - Used in scorecard and exposed to public. auROC Accuracy BalancedAccuracy Precision Recall FMeasure RootMeanSquaredError MeanAbsoluteError RSquared auPR PrecisionAtK RecallAtK HitRateAtK F1Score MeanPercentileRank MeanAbsoluteRank ExpectedTopPrecentileRank ExpectedTopAbsoluteRank MeanRecipricolRankAtK DiscountedCumulativeGain AtK NormalizedDiscountedCumulativeGainsAtK AveragePrecision MeanAvergePrecisionAtk
- BasicMetricValue? decimal - Value of the metric (of type DOUBLE). Used in scoredard, exposed to public.
- RowCount? int - Exposed to public.
- StartTime? string - Exposed to public.
- EndTime? string - Exposed to public.
- Span? string - Span
- GraphType? string - Enum that tracks the stored graphic’s type such as: ConfidencePlot LiftPlot PrecisionGraph RecallGraph HitRateGraph MeanReciprocalRankGraph DiscountedCumulativeGainsGraph NormalizedDiscountedCumulativeGainsGraph
- DataSetType? string - HoldOut, Training, Live, Model, Baseline. Exposed to public.
- ComplexMetricValue? string - For Case Classification- a JSON blob that contains graphic points that are used to populate a graph in the application. Builder: Not currently used but may be used in the future to support graphs such as lift graphs or predicted-versus-actual graphs. Case Classification: Used for confidence plot in Case Classification setup. AI Discovery: Used to store all metrics related to a model and for a given span (Day, Week, Alltime). This is a JSON blob.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MLModelSObject
Represents an AI model which is trained based on a specific MLPredictionDefinition. This AI model can represent the currently active model that is making predictions for a field, or a pending model that is waiting for approval, or a previous model that was replaced by a newer one.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the model. Is exposed to public.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PredictionDefinitionId? string - ID of the associated prediction definition
- ApprovalStatus? string - Whether or not the model is approved. Determines the UI status/actions.
- ScoringStatus? string - Whether or not scoring is enabled for this model. Determines the UI status/actions. Is exposed to the public.
- ModelType? string - AIModelType - the type of the model such as RandomForest or LogisticRegression. In scorecard for informational purposes. Is exposed to the public.
- TrainingStartTime? string - The time when training started for this model. In scorecard for informational purposes. Is exposed to the public.
- TrainingEndTime? string - The time when training ended for this model. In scorecard for informational purposes. Is exposed to the public.
- Dataset? string - Tracks the ID which is used for storing the model in the datastore. Is exposed to the public.
- RecommendationDefinitionId? string - ID of the associated recommendation definition
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MLPredictionDefinitionSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApplicationId? string - ID of the associated application
- Type? string - Type or category of the record
- Status? string - Current status of the record
- PredictionField? string - Prediction field
- PushbackField? string - Pushback field
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MLRecommendationDefinitionSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApplicationId? string - ID of the associated application
- Status? string - Current status of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MobileApplicationDetailSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Version? string - Version
- DevicePlatform? string - Device platform
- MinimumOsVersion? string - Minimum os version
- DeviceType? string - Type of the device
- ApplicationFileLength? int - Application file length
- ApplicationIcon? string - Application icon
- IsEnterpriseApp? boolean - Indicates whether the record is enterprise app (true) or not (false)
- AppInstallUrl? string - App install URL
- ApplicationBundleIdentifier? string - Application bundle identifier
- ApplicationBinaryFileName? string - Name of the application binary file
- ApplicationIconFileName? string - Name of the application icon file
- ApplicationBinary? record {} - Application binary
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MsgChannelLanguageKeywordSObject
Represents the consent configuration for a Messaging channel.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MasterLanguage? string - The language used for this consent configuration.
- OptInKeywords? string - The keywords a Messaging end user can send to explicitly opt in to receiving messages.
- DoubleOptInKeywords? string - The keywords a Messaging end user can send to doubly opt in to receiving messages.
- OptInConfirmation? string - The automated response sent when a Messaging end user opts in to receiving messages.
- HelpKeywords? string - The keywords a Messaging end user can send to request help during a Messaging session.
- HelpResponse? string - The automated response sent when a Messaging end user requests help.
- OptOutKeywords? string - The keywords a Messaging end user can send to opt out of receiving messages.
- OptOutConfirmation? string - The automated response sent when a Messaging end user opts out of receiving messages.
- MessagingChannelId? string - The ID of the associated Messaging channel.
- CustomKeywords? string - The keywords a Messaging end user can send to receive the Custom Response.
- CustomResponse? string - The automated response sent when a Messaging end user sends a Custom Keyword.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MsgChannelUsageExternalOrgSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- MessagingChannelUsageId? string - ID of the associated messaging channel usage
- ExternalOrgIdentifier? string - External org identifier
- ExternalSubOrgIdentifier? string - External sub org identifier
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MutingPermissionSetSObject
Represents a set of disabled permissions and is used in conjunction with PermissionSetGroup .
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization. When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance can slow while Salesforce generates one for each record.
- Language? string - The language of the muting permission set.
- MasterLabel? string - The muting permission set label for the aggregated, disabled permissions.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PermissionsEmailSingle? boolean - Indicates whether the email single permission is enabled (true) or not (false)
- PermissionsEmailMass? boolean - Indicates whether the email mass permission is enabled (true) or not (false)
- PermissionsEditTask? boolean - Indicates whether the edit task permission is enabled (true) or not (false)
- PermissionsEditEvent? boolean - Indicates whether the edit event permission is enabled (true) or not (false)
- PermissionsExportReport? boolean - Indicates whether the export report permission is enabled (true) or not (false)
- PermissionsImportPersonal? boolean - Indicates whether the import personal permission is enabled (true) or not (false)
- PermissionsDataExport? boolean - Indicates whether the data export permission is enabled (true) or not (false)
- PermissionsManageUsers? boolean - Indicates whether the manage users permission is enabled (true) or not (false)
- PermissionsEditPublicFilters? boolean - Indicates whether the edit public filters permission is enabled (true) or not (false)
- PermissionsEditPublicTemplates? boolean - Indicates whether the edit public templates permission is enabled (true) or not (false)
- PermissionsModifyAllData? boolean - Indicates whether the modify all data permission is enabled (true) or not (false)
- PermissionsEditBillingInfo? boolean - Indicates whether the edit billing info permission is enabled (true) or not (false)
- PermissionsManageCases? boolean - Indicates whether the manage cases permission is enabled (true) or not (false)
- PermissionsMassInlineEdit? boolean - Indicates whether the mass inline edit permission is enabled (true) or not (false)
- PermissionsEditKnowledge? boolean - Indicates whether the edit knowledge permission is enabled (true) or not (false)
- PermissionsManageKnowledge? boolean - Indicates whether the manage knowledge permission is enabled (true) or not (false)
- PermissionsManageSolutions? boolean - Indicates whether the manage solutions permission is enabled (true) or not (false)
- PermissionsCustomizeApplication? boolean - Indicates whether the customize application permission is enabled (true) or not (false)
- PermissionsEditReadonlyFields? boolean - Indicates whether the edit readonly fields permission is enabled (true) or not (false)
- PermissionsRunReports? boolean - Indicates whether the run reports permission is enabled (true) or not (false)
- PermissionsViewSetup? boolean - Indicates whether the view setup permission is enabled (true) or not (false)
- PermissionsTransferAnyEntity? boolean - Indicates whether the transfer any entity permission is enabled (true) or not (false)
- PermissionsNewReportBuilder? boolean - Indicates whether the new report builder permission is enabled (true) or not (false)
- PermissionsActivateContract? boolean - Indicates whether the activate contract permission is enabled (true) or not (false)
- PermissionsActivateOrder? boolean - Indicates whether the activate order permission is enabled (true) or not (false)
- PermissionsImportLeads? boolean - Indicates whether the import leads permission is enabled (true) or not (false)
- PermissionsManageLeads? boolean - Indicates whether the manage leads permission is enabled (true) or not (false)
- PermissionsTransferAnyLead? boolean - Indicates whether the transfer any lead permission is enabled (true) or not (false)
- PermissionsViewAllData? boolean - Indicates whether the view all data permission is enabled (true) or not (false)
- PermissionsEditPublicDocuments? boolean - Indicates whether the edit public documents permission is enabled (true) or not (false)
- PermissionsViewEncryptedData? boolean - Indicates whether the view encrypted data permission is enabled (true) or not (false)
- PermissionsEditBrandTemplates? boolean - Indicates whether the edit brand templates permission is enabled (true) or not (false)
- PermissionsEditHtmlTemplates? boolean - Indicates whether the edit HTML templates permission is enabled (true) or not (false)
- PermissionsChatterInternalUser? boolean - Indicates whether the chatter internal user permission is enabled (true) or not (false)
- PermissionsManageEncryptionKeys? boolean - Indicates whether the manage encryption keys permission is enabled (true) or not (false)
- PermissionsDeleteActivatedContract? boolean - Indicates whether the delete activated contract permission is enabled (true) or not (false)
- PermissionsChatterInviteExternalUsers? boolean - Indicates whether the chatter invite external users permission is enabled (true) or not (false)
- PermissionsSendSitRequests? boolean - Indicates whether the send sit requests permission is enabled (true) or not (false)
- PermissionsApiUserOnly? boolean - Indicates whether the API user only permission is enabled (true) or not (false)
- PermissionsManageRemoteAccess? boolean - Indicates whether the manage remote access permission is enabled (true) or not (false)
- PermissionsCanUseNewDashboardBuilder? boolean - Indicates whether the can use new dashboard builder permission is enabled (true) or not (false)
- PermissionsManageCategories? boolean - Indicates whether the manage categories permission is enabled (true) or not (false)
- PermissionsConvertLeads? boolean - Indicates whether the convert leads permission is enabled (true) or not (false)
- PermissionsPasswordNeverExpires? boolean - Indicates whether the password never expires permission is enabled (true) or not (false)
- PermissionsUseTeamReassignWizards? boolean - Indicates whether the use team reassign wizards permission is enabled (true) or not (false)
- PermissionsEditActivatedOrders? boolean - Indicates whether the edit activated orders permission is enabled (true) or not (false)
- PermissionsInstallPackaging? boolean - Indicates whether the install packaging permission is enabled (true) or not (false)
- PermissionsPublishPackaging? boolean - Indicates whether the publish packaging permission is enabled (true) or not (false)
- PermissionsChatterOwnGroups? boolean - Indicates whether the chatter own groups permission is enabled (true) or not (false)
- PermissionsEditOppLineItemUnitPrice? boolean - Indicates whether the edit opp line item unit price permission is enabled (true) or not (false)
- PermissionsCreatePackaging? boolean - Indicates whether the create packaging permission is enabled (true) or not (false)
- PermissionsBulkApiHardDelete? boolean - Indicates whether the bulk API hard delete permission is enabled (true) or not (false)
- PermissionsSolutionImport? boolean - Indicates whether the solution import permission is enabled (true) or not (false)
- PermissionsManageCallCenters? boolean - Indicates whether the manage call centers permission is enabled (true) or not (false)
- PermissionsManageSynonyms? boolean - Indicates whether the manage synonyms permission is enabled (true) or not (false)
- PermissionsViewContent? boolean - Indicates whether the view content permission is enabled (true) or not (false)
- PermissionsManageEmailClientConfig? boolean - Indicates whether the manage email client config permission is enabled (true) or not (false)
- PermissionsEnableNotifications? boolean - Indicates whether the enable notifications permission is enabled (true) or not (false)
- PermissionsManageDataIntegrations? boolean - Indicates whether the manage data integrations permission is enabled (true) or not (false)
- PermissionsDistributeFromPersWksp? boolean - Indicates whether the distribute from pers wksp permission is enabled (true) or not (false)
- PermissionsViewDataCategories? boolean - Indicates whether the view data categories permission is enabled (true) or not (false)
- PermissionsManageDataCategories? boolean - Indicates whether the manage data categories permission is enabled (true) or not (false)
- PermissionsAuthorApex? boolean - Indicates whether the author apex permission is enabled (true) or not (false)
- PermissionsManageMobile? boolean - Indicates whether the manage mobile permission is enabled (true) or not (false)
- PermissionsApiEnabled? boolean - Indicates whether the API enabled permission is enabled (true) or not (false)
- PermissionsManageCustomReportTypes? boolean - Indicates whether the manage custom report types permission is enabled (true) or not (false)
- PermissionsEditCaseComments? boolean - Indicates whether the edit case comments permission is enabled (true) or not (false)
- PermissionsTransferAnyCase? boolean - Indicates whether the transfer any case permission is enabled (true) or not (false)
- PermissionsContentAdministrator? boolean - Indicates whether the content administrator permission is enabled (true) or not (false)
- PermissionsCreateWorkspaces? boolean - Indicates whether the create workspaces permission is enabled (true) or not (false)
- PermissionsManageContentPermissions? boolean - Indicates whether the manage content permissions permission is enabled (true) or not (false)
- PermissionsManageContentProperties? boolean - Indicates whether the manage content properties permission is enabled (true) or not (false)
- PermissionsManageContentTypes? boolean - Indicates whether the manage content types permission is enabled (true) or not (false)
- PermissionsManageExchangeConfig? boolean - Indicates whether the manage exchange config permission is enabled (true) or not (false)
- PermissionsManageAnalyticSnapshots? boolean - Indicates whether the manage analytic snapshots permission is enabled (true) or not (false)
- PermissionsScheduleReports? boolean - Indicates whether the schedule reports permission is enabled (true) or not (false)
- PermissionsManageBusinessHourHolidays? boolean - Indicates whether the manage business hour holidays permission is enabled (true) or not (false)
- PermissionsManageEntitlements? boolean - Indicates whether the manage entitlements permission is enabled (true) or not (false)
- PermissionsManageDynamicDashboards? boolean - Indicates whether the manage dynamic dashboards permission is enabled (true) or not (false)
- PermissionsCustomSidebarOnAllPages? boolean - Indicates whether the custom sidebar on all pages permission is enabled (true) or not (false)
- PermissionsManageInteraction? boolean - Indicates whether the manage interaction permission is enabled (true) or not (false)
- PermissionsViewMyTeamsDashboards? boolean - Indicates whether the view my teams dashboards permission is enabled (true) or not (false)
- PermissionsModerateChatter? boolean - Indicates whether the moderate chatter permission is enabled (true) or not (false)
- PermissionsResetPasswords? boolean - Indicates whether the reset passwords permission is enabled (true) or not (false)
- PermissionsFlowUFLRequired? boolean - Indicates whether the flow ufl required permission is enabled (true) or not (false)
- PermissionsCanInsertFeedSystemFields? boolean - Indicates whether the can insert feed system fields permission is enabled (true) or not (false)
- PermissionsActivitiesAccess? boolean - Indicates whether the activities access permission is enabled (true) or not (false)
- PermissionsManageKnowledgeImportExport? boolean - Indicates whether the manage knowledge import export permission is enabled (true) or not (false)
- PermissionsEmailTemplateManagement? boolean - Indicates whether the email template management permission is enabled (true) or not (false)
- PermissionsEmailAdministration? boolean - Indicates whether the email administration permission is enabled (true) or not (false)
- PermissionsManageChatterMessages? boolean - Indicates whether the manage chatter messages permission is enabled (true) or not (false)
- PermissionsAllowEmailIC? boolean - Indicates whether the allow email ic permission is enabled (true) or not (false)
- PermissionsChatterFileLink? boolean - Indicates whether the chatter file link permission is enabled (true) or not (false)
- PermissionsForceTwoFactor? boolean - Indicates whether the force two factor permission is enabled (true) or not (false)
- PermissionsViewEventLogFiles? boolean - Indicates whether the view event log files permission is enabled (true) or not (false)
- PermissionsManageNetworks? boolean - Indicates whether the manage networks permission is enabled (true) or not (false)
- PermissionsManageAuthProviders? boolean - Indicates whether the manage auth providers permission is enabled (true) or not (false)
- PermissionsRunFlow? boolean - Indicates whether the run flow permission is enabled (true) or not (false)
- PermissionsCreateCustomizeDashboards? boolean - Indicates whether the create customize dashboards permission is enabled (true) or not (false)
- PermissionsCreateDashboardFolders? boolean - Indicates whether the create dashboard folders permission is enabled (true) or not (false)
- PermissionsViewPublicDashboards? boolean - Indicates whether the view public dashboards permission is enabled (true) or not (false)
- PermissionsManageDashbdsInPubFolders? boolean - Indicates whether the manage dashbds in pub folders permission is enabled (true) or not (false)
- PermissionsCreateCustomizeReports? boolean - Indicates whether the create customize reports permission is enabled (true) or not (false)
- PermissionsCreateReportFolders? boolean - Indicates whether the create report folders permission is enabled (true) or not (false)
- PermissionsViewPublicReports? boolean - Indicates whether the view public reports permission is enabled (true) or not (false)
- PermissionsManageReportsInPubFolders? boolean - Indicates whether the manage reports in pub folders permission is enabled (true) or not (false)
- PermissionsEditMyDashboards? boolean - Indicates whether the edit my dashboards permission is enabled (true) or not (false)
- PermissionsEditMyReports? boolean - Indicates whether the edit my reports permission is enabled (true) or not (false)
- PermissionsViewAllUsers? boolean - Indicates whether the view all users permission is enabled (true) or not (false)
- PermissionsAllowUniversalSearch? boolean - Indicates whether the allow universal search permission is enabled (true) or not (false)
- PermissionsConnectOrgToEnvironmentHub? boolean - Indicates whether the connect org to environment hub permission is enabled (true) or not (false)
- PermissionsWorkCalibrationUser? boolean - Indicates whether the work calibration user permission is enabled (true) or not (false)
- PermissionsCreateCustomizeFilters? boolean - Indicates whether the create customize filters permission is enabled (true) or not (false)
- PermissionsWorkDotComUserPerm? boolean - Indicates whether the work dot com user perm permission is enabled (true) or not (false)
- PermissionsContentHubUser? boolean - Indicates whether the content hub user permission is enabled (true) or not (false)
- PermissionsGovernNetworks? boolean - Indicates whether the govern networks permission is enabled (true) or not (false)
- PermissionsSalesConsole? boolean - Indicates whether the sales console permission is enabled (true) or not (false)
- PermissionsTwoFactorApi? boolean - Indicates whether the two factor API permission is enabled (true) or not (false)
- PermissionsDeleteTopics? boolean - Indicates whether the delete topics permission is enabled (true) or not (false)
- PermissionsEditTopics? boolean - Indicates whether the edit topics permission is enabled (true) or not (false)
- PermissionsCreateTopics? boolean - Indicates whether the create topics permission is enabled (true) or not (false)
- PermissionsAssignTopics? boolean - Indicates whether the assign topics permission is enabled (true) or not (false)
- PermissionsIdentityEnabled? boolean - Indicates whether the identity enabled permission is enabled (true) or not (false)
- PermissionsIdentityConnect? boolean - Indicates whether the identity connect permission is enabled (true) or not (false)
- PermissionsAllowViewKnowledge? boolean - Indicates whether the allow view knowledge permission is enabled (true) or not (false)
- PermissionsContentWorkspaces? boolean - Indicates whether the content workspaces permission is enabled (true) or not (false)
- PermissionsManageSearchPromotionRules? boolean - Indicates whether the manage search promotion rules permission is enabled (true) or not (false)
- PermissionsCustomMobileAppsAccess? boolean - Indicates whether the custom mobile apps access permission is enabled (true) or not (false)
- PermissionsViewHelpLink? boolean - Indicates whether the view help link permission is enabled (true) or not (false)
- PermissionsManageProfilesPermissionsets? boolean - Indicates whether the manage profiles permissionsets permission is enabled (true) or not (false)
- PermissionsAssignPermissionSets? boolean - Indicates whether the assign permission sets permission is enabled (true) or not (false)
- PermissionsManageRoles? boolean - Indicates whether the manage roles permission is enabled (true) or not (false)
- PermissionsManageIpAddresses? boolean - Indicates whether the manage IP addresses permission is enabled (true) or not (false)
- PermissionsManageSharing? boolean - Indicates whether the manage sharing permission is enabled (true) or not (false)
- PermissionsManageInternalUsers? boolean - Indicates whether the manage internal users permission is enabled (true) or not (false)
- PermissionsManagePasswordPolicies? boolean - Indicates whether the manage password policies permission is enabled (true) or not (false)
- PermissionsManageLoginAccessPolicies? boolean - Indicates whether the manage login access policies permission is enabled (true) or not (false)
- PermissionsViewPlatformEvents? boolean - Indicates whether the view platform events permission is enabled (true) or not (false)
- PermissionsManageCustomPermissions? boolean - Indicates whether the manage custom permissions permission is enabled (true) or not (false)
- PermissionsCanVerifyComment? boolean - Indicates whether the can verify comment permission is enabled (true) or not (false)
- PermissionsManageUnlistedGroups? boolean - Indicates whether the manage unlisted groups permission is enabled (true) or not (false)
- PermissionsStdAutomaticActivityCapture? boolean - Indicates whether the std automatic activity capture permission is enabled (true) or not (false)
- PermissionsInsightsAppDashboardEditor? boolean - Indicates whether the insights app dashboard editor permission is enabled (true) or not (false)
- PermissionsManageTwoFactor? boolean - Indicates whether the manage two factor permission is enabled (true) or not (false)
- PermissionsInsightsAppUser? boolean - Indicates whether the insights app user permission is enabled (true) or not (false)
- PermissionsInsightsAppAdmin? boolean - Indicates whether the insights app admin permission is enabled (true) or not (false)
- PermissionsInsightsAppEltEditor? boolean - Indicates whether the insights app elt editor permission is enabled (true) or not (false)
- PermissionsInsightsAppUploadUser? boolean - Indicates whether the insights app upload user permission is enabled (true) or not (false)
- PermissionsInsightsCreateApplication? boolean - Indicates whether the insights create application permission is enabled (true) or not (false)
- PermissionsLightningExperienceUser? boolean - Indicates whether the lightning experience user permission is enabled (true) or not (false)
- PermissionsViewDataLeakageEvents? boolean - Indicates whether the view data leakage events permission is enabled (true) or not (false)
- PermissionsConfigCustomRecs? boolean - Indicates whether the config custom recs permission is enabled (true) or not (false)
- PermissionsSubmitMacrosAllowed? boolean - Indicates whether the submit macros allowed permission is enabled (true) or not (false)
- PermissionsBulkMacrosAllowed? boolean - Indicates whether the bulk macros allowed permission is enabled (true) or not (false)
- PermissionsShareInternalArticles? boolean - Indicates whether the share internal articles permission is enabled (true) or not (false)
- PermissionsManageSessionPermissionSets? boolean - Indicates whether the manage session permission sets permission is enabled (true) or not (false)
- PermissionsManageTemplatedApp? boolean - Indicates whether the manage templated app permission is enabled (true) or not (false)
- PermissionsUseTemplatedApp? boolean - Indicates whether the use templated app permission is enabled (true) or not (false)
- PermissionsSendAnnouncementEmails? boolean - Indicates whether the send announcement emails permission is enabled (true) or not (false)
- PermissionsChatterEditOwnPost? boolean - Indicates whether the chatter edit own post permission is enabled (true) or not (false)
- PermissionsChatterEditOwnRecordPost? boolean - Indicates whether the chatter edit own record post permission is enabled (true) or not (false)
- PermissionsWaveTabularDownload? boolean - Indicates whether the wave tabular download permission is enabled (true) or not (false)
- PermissionsWaveCommunityUser? boolean - Indicates whether the wave community user permission is enabled (true) or not (false)
- PermissionsAutomaticActivityCapture? boolean - Indicates whether the automatic activity capture permission is enabled (true) or not (false)
- PermissionsImportCustomObjects? boolean - Indicates whether the import custom objects permission is enabled (true) or not (false)
- PermissionsSalesforceIQInbox? boolean - Indicates whether the salesforce iq inbox permission is enabled (true) or not (false)
- PermissionsDelegatedTwoFactor? boolean - Indicates whether the delegated two factor permission is enabled (true) or not (false)
- PermissionsChatterComposeUiCodesnippet? boolean - Indicates whether the chatter compose UI codesnippet permission is enabled (true) or not (false)
- PermissionsSelectFilesFromSalesforce? boolean - Indicates whether the select files from salesforce permission is enabled (true) or not (false)
- PermissionsModerateNetworkUsers? boolean - Indicates whether the moderate network users permission is enabled (true) or not (false)
- PermissionsMergeTopics? boolean - Indicates whether the merge topics permission is enabled (true) or not (false)
- PermissionsSubscribeToLightningReports? boolean - Indicates whether the subscribe to lightning reports permission is enabled (true) or not (false)
- PermissionsManagePvtRptsAndDashbds? boolean - Indicates whether the manage pvt rpts and dashbds permission is enabled (true) or not (false)
- PermissionsAllowLightningLogin? boolean - Indicates whether the allow lightning login permission is enabled (true) or not (false)
- PermissionsCampaignInfluence2? boolean - Indicates whether the campaign influence 2 permission is enabled (true) or not (false)
- PermissionsViewDataAssessment? boolean - Indicates whether the view data assessment permission is enabled (true) or not (false)
- PermissionsRemoveDirectMessageMembers? boolean - Indicates whether the remove direct message members permission is enabled (true) or not (false)
- PermissionsCanApproveFeedPost? boolean - Indicates whether the can approve feed post permission is enabled (true) or not (false)
- PermissionsAddDirectMessageMembers? boolean - Indicates whether the add direct message members permission is enabled (true) or not (false)
- PermissionsAllowViewEditConvertedLeads? boolean - Indicates whether the allow view edit converted leads permission is enabled (true) or not (false)
- PermissionsShowCompanyNameAsUserBadge? boolean - Indicates whether the show company name as user badge permission is enabled (true) or not (false)
- PermissionsAccessCMC? boolean - Indicates whether the access cmc permission is enabled (true) or not (false)
- PermissionsViewHealthCheck? boolean - Indicates whether the view health check permission is enabled (true) or not (false)
- PermissionsManageHealthCheck? boolean - Indicates whether the manage health check permission is enabled (true) or not (false)
- PermissionsPackaging2? boolean - Indicates whether the packaging 2 permission is enabled (true) or not (false)
- PermissionsManageCertificates? boolean - Indicates whether the manage certificates permission is enabled (true) or not (false)
- PermissionsCreateReportInLightning? boolean - Indicates whether the create report in lightning permission is enabled (true) or not (false)
- PermissionsPreventClassicExperience? boolean - Indicates whether the prevent classic experience permission is enabled (true) or not (false)
- PermissionsHideReadByList? boolean - Indicates whether the hide read by list permission is enabled (true) or not (false)
- PermissionsListEmailSend? boolean - Indicates whether the list email send permission is enabled (true) or not (false)
- PermissionsFeedPinning? boolean - Indicates whether the feed pinning permission is enabled (true) or not (false)
- PermissionsChangeDashboardColors? boolean - Indicates whether the change dashboard colors permission is enabled (true) or not (false)
- PermissionsManageRecommendationStrategies? boolean - Indicates whether the manage recommendation strategies permission is enabled (true) or not (false)
- PermissionsManagePropositions? boolean - Indicates whether the manage propositions permission is enabled (true) or not (false)
- PermissionsCloseConversations? boolean - Indicates whether the close conversations permission is enabled (true) or not (false)
- PermissionsSubscribeReportRolesGrps? boolean - Indicates whether the subscribe report roles grps permission is enabled (true) or not (false)
- PermissionsSubscribeDashboardRolesGrps? boolean - Indicates whether the subscribe dashboard roles grps permission is enabled (true) or not (false)
- PermissionsUseWebLink? boolean - Indicates whether the use web link permission is enabled (true) or not (false)
- PermissionsHasUnlimitedNBAExecutions? boolean - Indicates whether the has unlimited nba executions permission is enabled (true) or not (false)
- PermissionsViewOnlyEmbeddedAppUser? boolean - Indicates whether the view only embedded app user permission is enabled (true) or not (false)
- PermissionsViewAllActivities? boolean - Indicates whether the view all activities permission is enabled (true) or not (false)
- PermissionsSubscribeReportToOtherUsers? boolean - Indicates whether the subscribe report to other users permission is enabled (true) or not (false)
- PermissionsLightningConsoleAllowedForUser? boolean - Indicates whether the lightning console allowed for user permission is enabled (true) or not (false)
- PermissionsSubscribeReportsRunAsUser? boolean - Indicates whether the subscribe reports run as user permission is enabled (true) or not (false)
- PermissionsSubscribeToLightningDashboards? boolean - Indicates whether the subscribe to lightning dashboards permission is enabled (true) or not (false)
- PermissionsSubscribeDashboardToOtherUsers? boolean - Indicates whether the subscribe dashboard to other users permission is enabled (true) or not (false)
- PermissionsCreateLtngTempInPub? boolean - Indicates whether the create ltng temp in pub permission is enabled (true) or not (false)
- PermissionsAppointmentBookingUserAccess? boolean - Indicates whether the appointment booking user access permission is enabled (true) or not (false)
- PermissionsTransactionalEmailSend? boolean - Indicates whether the transactional email send permission is enabled (true) or not (false)
- PermissionsViewPrivateStaticResources? boolean - Indicates whether the view private static resources permission is enabled (true) or not (false)
- PermissionsCreateLtngTempFolder? boolean - Indicates whether the create ltng temp folder permission is enabled (true) or not (false)
- PermissionsApexRestServices? boolean - Indicates whether the apex rest services permission is enabled (true) or not (false)
- PermissionsConfigureLiveMessage? boolean - Indicates whether the configure live message permission is enabled (true) or not (false)
- PermissionsLiveMessageAgent? boolean - Indicates whether the live message agent permission is enabled (true) or not (false)
- PermissionsEnableCommunityAppLauncher? boolean - Indicates whether the enable community app launcher permission is enabled (true) or not (false)
- PermissionsGiveRecognitionBadge? boolean - Indicates whether the give recognition badge permission is enabled (true) or not (false)
- PermissionsLightningSchedulerUserAccess? boolean - Indicates whether the lightning scheduler user access permission is enabled (true) or not (false)
- PermissionsSalesforceIQInternal? boolean - Indicates whether the salesforce iq internal permission is enabled (true) or not (false)
- PermissionsUseMySearch? boolean - Indicates whether the use my search permission is enabled (true) or not (false)
- PermissionsLtngPromoReserved01UserPerm? boolean - Indicates whether the ltng promo reserved 01 user perm permission is enabled (true) or not (false)
- PermissionsManageSubscriptions? boolean - Indicates whether the manage subscriptions permission is enabled (true) or not (false)
- PermissionsWaveManagePrivateAssetsUser? boolean - Indicates whether the wave manage private assets user permission is enabled (true) or not (false)
- PermissionsCanEditDataPrepRecipe? boolean - Indicates whether the can edit data prep recipe permission is enabled (true) or not (false)
- PermissionsAddAnalyticsRemoteConnections? boolean - Indicates whether the add analytics remote connections permission is enabled (true) or not (false)
- PermissionsManageSurveys? boolean - Indicates whether the manage surveys permission is enabled (true) or not (false)
- PermissionsUseAssistantDialog? boolean - Indicates whether the use assistant dialog permission is enabled (true) or not (false)
- PermissionsUseQuerySuggestions? boolean - Indicates whether the use query suggestions permission is enabled (true) or not (false)
- PermissionsRecordVisibilityAPI? boolean - Indicates whether the record visibility api permission is enabled (true) or not (false)
- PermissionsViewRoles? boolean - Indicates whether the view roles permission is enabled (true) or not (false)
- PermissionsCanManageMaps? boolean - Indicates whether the can manage maps permission is enabled (true) or not (false)
- PermissionsLMOutboundMessagingUserPerm? boolean - Indicates whether the lm outbound messaging user perm permission is enabled (true) or not (false)
- PermissionsModifyDataClassification? boolean - Indicates whether the modify data classification permission is enabled (true) or not (false)
- PermissionsPrivacyDataAccess? boolean - Indicates whether the privacy data access permission is enabled (true) or not (false)
- PermissionsQueryAllFiles? boolean - Indicates whether the query all files permission is enabled (true) or not (false)
- PermissionsModifyMetadata? boolean - Indicates whether the modify metadata permission is enabled (true) or not (false)
- PermissionsManageCMS? boolean - Indicates whether the manage cms permission is enabled (true) or not (false)
- PermissionsSandboxTestingInCommunityApp? boolean - Indicates whether the sandbox testing in community app permission is enabled (true) or not (false)
- PermissionsCanEditPrompts? boolean - Indicates whether the can edit prompts permission is enabled (true) or not (false)
- PermissionsViewUserPII? boolean - Indicates whether the view user pii permission is enabled (true) or not (false)
- PermissionsManageHubConnections? boolean - Indicates whether the manage hub connections permission is enabled (true) or not (false)
- PermissionsB2BMarketingAnalyticsUser? boolean - Indicates whether the b 2 b marketing analytics user permission is enabled (true) or not (false)
- PermissionsTraceXdsQueries? boolean - Indicates whether the trace xds queries permission is enabled (true) or not (false)
- PermissionsViewSecurityCommandCenter? boolean - Indicates whether the view security command center permission is enabled (true) or not (false)
- PermissionsManageSecurityCommandCenter? boolean - Indicates whether the manage security command center permission is enabled (true) or not (false)
- PermissionsViewAllCustomSettings? boolean - Indicates whether the view all custom settings permission is enabled (true) or not (false)
- PermissionsViewAllForeignKeyNames? boolean - Indicates whether the view all foreign key names permission is enabled (true) or not (false)
- PermissionsAddWaveNotificationRecipients? boolean - Indicates whether the add wave notification recipients permission is enabled (true) or not (false)
- PermissionsHeadlessCMSAccess? boolean - Indicates whether the headless cms access permission is enabled (true) or not (false)
- PermissionsUseFulfillmentAPIs? boolean - Indicates whether the use fulfillment ap is permission is enabled (true) or not (false)
- PermissionsLMEndMessagingSessionUserPerm? boolean - Indicates whether the lm end messaging session user perm permission is enabled (true) or not (false)
- PermissionsConsentApiUpdate? boolean - Indicates whether the consent API update permission is enabled (true) or not (false)
- PermissionsPaymentsAPIUser? boolean - Indicates whether the payments api user permission is enabled (true) or not (false)
- PermissionsAccessContentBuilder? boolean - Indicates whether the access content builder permission is enabled (true) or not (false)
- PermissionsAccountSwitcherUser? boolean - Indicates whether the account switcher user permission is enabled (true) or not (false)
- PermissionsViewAnomalyEvents? boolean - Indicates whether the view anomaly events permission is enabled (true) or not (false)
- PermissionsManageC360AConnections? boolean - Indicates whether the manage c 360 a connections permission is enabled (true) or not (false)
- PermissionsIsContactCenterAdmin? boolean - Indicates whether the is contact center admin permission is enabled (true) or not (false)
- PermissionsIsContactCenterAgent? boolean - Indicates whether the is contact center agent permission is enabled (true) or not (false)
- PermissionsManageReleaseUpdates? boolean - Indicates whether the manage release updates permission is enabled (true) or not (false)
- PermissionsViewAllProfiles? boolean - Indicates whether the view all profiles permission is enabled (true) or not (false)
- PermissionsSkipIdentityConfirmation? boolean - Indicates whether the skip identity confirmation permission is enabled (true) or not (false)
- PermissionsCanToggleCallRecordings? boolean - Indicates whether the can toggle call recordings permission is enabled (true) or not (false)
- PermissionsLearningManager? boolean - Indicates whether the learning manager permission is enabled (true) or not (false)
- PermissionsSendCustomNotifications? boolean - Indicates whether the send custom notifications permission is enabled (true) or not (false)
- PermissionsPackaging2Delete? boolean - Indicates whether the packaging 2 delete permission is enabled (true) or not (false)
- PermissionsUseOmnichannelInventoryAPIs? boolean - Indicates whether the use omnichannel inventory ap is permission is enabled (true) or not (false)
- PermissionsViewRestrictionAndScopingRules? boolean - Indicates whether the view restriction and scoping rules permission is enabled (true) or not (false)
- PermissionsFSCComprehensiveUserAccess? boolean - Indicates whether the fsc comprehensive user access permission is enabled (true) or not (false)
- PermissionsBotManageBots? boolean - Indicates whether the bot manage bots permission is enabled (true) or not (false)
- PermissionsBotManageBotsTrainingData? boolean - Indicates whether the bot manage bots training data permission is enabled (true) or not (false)
- PermissionsSchedulingLineAmbassador? boolean - Indicates whether the scheduling line ambassador permission is enabled (true) or not (false)
- PermissionsSchedulingFacilityManager? boolean - Indicates whether the scheduling facility manager permission is enabled (true) or not (false)
- PermissionsOmnichannelInventorySync? boolean - Indicates whether the omnichannel inventory sync permission is enabled (true) or not (false)
- PermissionsManageLearningReporting? boolean - Indicates whether the manage learning reporting permission is enabled (true) or not (false)
- PermissionsIsContactCenterSupervisor? boolean - Indicates whether the is contact center supervisor permission is enabled (true) or not (false)
- PermissionsIsotopeCToCUser? boolean - Indicates whether the isotope c to c user permission is enabled (true) or not (false)
- PermissionsCanAccessCE? boolean - Indicates whether the can access ce permission is enabled (true) or not (false)
- PermissionsUseAddOrderItemSummaryAPIs? boolean - Indicates whether the use add order item summary ap is permission is enabled (true) or not (false)
- PermissionsIsotopeAccess? boolean - Indicates whether the isotope access permission is enabled (true) or not (false)
- PermissionsIsotopeLEX? boolean - Indicates whether the isotope lex permission is enabled (true) or not (false)
- PermissionsQuipMetricsAccess? boolean - Indicates whether the quip metrics access permission is enabled (true) or not (false)
- PermissionsQuipUserEngagementMetrics? boolean - Indicates whether the quip user engagement metrics permission is enabled (true) or not (false)
- PermissionsRemoteMediaVirtualDesktop? boolean - Indicates whether the remote media virtual desktop permission is enabled (true) or not (false)
- PermissionsTransactionSecurityExempt? boolean - Indicates whether the transaction security exempt permission is enabled (true) or not (false)
- PermissionsManageStores? boolean - Indicates whether the manage stores permission is enabled (true) or not (false)
- PermissionsManageExternalConnections? boolean - Indicates whether the manage external connections permission is enabled (true) or not (false)
- PermissionsUseReturnOrder? boolean - Indicates whether the use return order permission is enabled (true) or not (false)
- PermissionsUseReturnOrderAPIs? boolean - Indicates whether the use return order ap is permission is enabled (true) or not (false)
- PermissionsUseSubscriptionEmails? boolean - Indicates whether the use subscription emails permission is enabled (true) or not (false)
- PermissionsUseOrderEntry? boolean - Indicates whether the use order entry permission is enabled (true) or not (false)
- PermissionsUseRepricing? boolean - Indicates whether the use repricing permission is enabled (true) or not (false)
- PermissionsAIViewInsightObjects? boolean - Indicates whether the ai view insight objects permission is enabled (true) or not (false)
- PermissionsAICreateInsightObjects? boolean - Indicates whether the ai create insight objects permission is enabled (true) or not (false)
- PermissionsViewMLModels? boolean - Indicates whether the view ml models permission is enabled (true) or not (false)
- PermissionsLifecycleManagementAPIUser? boolean - Indicates whether the lifecycle management api user permission is enabled (true) or not (false)
- PermissionsNativeWebviewScrolling? boolean - Indicates whether the native webview scrolling permission is enabled (true) or not (false)
- PermissionsViewDeveloperName? boolean - Indicates whether the view developer name permission is enabled (true) or not (false)
- PermissionsBypassMFAForUiLogins? boolean - Indicates whether the bypass mfa for UI logins permission is enabled (true) or not (false)
- PermissionsClientSecretRotation? boolean - Indicates whether the client secret rotation permission is enabled (true) or not (false)
- PermissionsAccessToServiceProcess? boolean - Indicates whether the access to service process permission is enabled (true) or not (false)
- PermissionsManageOrchInstsAndWorkItems? boolean - Indicates whether the manage orch insts and work items permission is enabled (true) or not (false)
- PermissionsCMSECEAuthoringAccess? boolean - Indicates whether the cmsece authoring access permission is enabled (true) or not (false)
- PermissionsManageDataspaceScope? boolean - Indicates whether the manage dataspace scope permission is enabled (true) or not (false)
- PermissionsConfigureDataspaceScope? boolean - Indicates whether the configure dataspace scope permission is enabled (true) or not (false)
- PermissionsCdcReportingCreateReports? boolean - Indicates whether the cdc reporting create reports permission is enabled (true) or not (false)
- PermissionsCdcReportingViewReports? boolean - Indicates whether the cdc reporting view reports permission is enabled (true) or not (false)
- PermissionsCdcReportingManageFolders? boolean - Indicates whether the cdc reporting manage folders permission is enabled (true) or not (false)
- PermissionsOmnichannelInventoryBasic? boolean - Indicates whether the omnichannel inventory basic permission is enabled (true) or not (false)
- PermissionsDeleteCrMemoAndInvoice? boolean - Indicates whether the delete cr memo and invoice permission is enabled (true) or not (false)
- PermissionsEmbeddedMessagingAgent? boolean - Indicates whether the embedded messaging agent permission is enabled (true) or not (false)
- PermissionsManageNamedCredentials? boolean - Indicates whether the manage named credentials permission is enabled (true) or not (false)
- PermissionsCanInitiateMessagingSessions? boolean - Indicates whether the can initiate messaging sessions permission is enabled (true) or not (false)
- PermissionsEditRepricing? boolean - Indicates whether the edit repricing permission is enabled (true) or not (false)
- PermissionsManageDataMaskPolicies? boolean - Indicates whether the manage data mask policies permission is enabled (true) or not (false)
- PermissionsCanUpdateEmailMessage? boolean - Indicates whether the can update email message permission is enabled (true) or not (false)
- PermissionsDownloadPackageVersionZips? boolean - Indicates whether the download package version zips permission is enabled (true) or not (false)
- PermissionsReassignOrchestrationWorkItems? boolean - Indicates whether the reassign orchestration work items permission is enabled (true) or not (false)
- PermissionsManageOrchestrationRuns? boolean - Indicates whether the manage orchestration runs permission is enabled (true) or not (false)
- PermissionsDigitalLendingUser? boolean - Indicates whether the digital lending user permission is enabled (true) or not (false)
- PermissionsLoanOfficerUser? boolean - Indicates whether the loan officer user permission is enabled (true) or not (false)
- PermissionsUnderwriterUser? boolean - Indicates whether the underwriter user permission is enabled (true) or not (false)
- PermissionsUseOMAnalytics? boolean - Indicates whether the use om analytics permission is enabled (true) or not (false)
- PermissionsUseExchangesAPIs? boolean - Indicates whether the use exchanges ap is permission is enabled (true) or not (false)
- PermissionsEnableIPFSUpload? boolean - Indicates whether the enable ipfs upload permission is enabled (true) or not (false)
- PermissionsEnableBCTransactionPolling? boolean - Indicates whether the enable bc transaction polling permission is enabled (true) or not (false)
- PermissionsLobbyManagementUserAccess? boolean - Indicates whether the lobby management user access permission is enabled (true) or not (false)
- PermissionsUseRegisterGuestBuyerAPI? boolean - Indicates whether the use register guest buyer api permission is enabled (true) or not (false)
- PermissionsSimpleCsvDataImportUser? boolean - Indicates whether the simple CSV data import user permission is enabled (true) or not (false)
- PermissionsAdvancedCsvDataImportUser? boolean - Indicates whether the advanced CSV data import user permission is enabled (true) or not (false)
- PermissionsAccessToComplaintMgmt? boolean - Indicates whether the access to complaint mgmt permission is enabled (true) or not (false)
- PermissionsAccessToDisputeManagement? boolean - Indicates whether the access to dispute management permission is enabled (true) or not (false)
- PermissionsPersonalizedFinanceUserAccess? boolean - Indicates whether the personalized finance user access permission is enabled (true) or not (false)
- PermissionsCustomAppsOnFSMobile? boolean - Indicates whether the custom apps on fs mobile permission is enabled (true) or not (false)
- PermissionsStageManagementDesignUser? boolean - Indicates whether the stage management design user permission is enabled (true) or not (false)
- PermissionsSegmentIntelligenceUser? boolean - Indicates whether the segment intelligence user permission is enabled (true) or not (false)
- PermissionsFSCArcGraphCommunityUser? boolean - Indicates whether the fsc arc graph community user permission is enabled (true) or not (false)
- PermissionsDigitalLendingAdminUser? boolean - Indicates whether the digital lending admin user permission is enabled (true) or not (false)
- PermissionsActivateSystemModeFlows? boolean - Indicates whether the activate system mode flows permission is enabled (true) or not (false)
- PermissionsPersonalizationPlatform? boolean - Indicates whether the personalization platform permission is enabled (true) or not (false)
- PermissionsLeadInspectorUser? boolean - Indicates whether the lead inspector user permission is enabled (true) or not (false)
- PermissionsContactInspectorUser? boolean - Indicates whether the contact inspector user permission is enabled (true) or not (false)
- PermissionsAccessDisputePrompts? boolean - Indicates whether the access dispute prompts permission is enabled (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: MyDomainDiscoverableLoginSObject
Represents configuration settings when the My Domain login page type is Discovery. Login Discovery provides an identity-first login experience, where the login page contains the identifier field only. Based on the identifier entered, a handler determines how to authenticate the user.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.
- Language? string - The language of the MasterLabel.
- MasterLabel? string - The name of the action link group template.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ApexHandlerId? string - The ID of the Apex handler that contains the Discovery authentication logic.
- ExecuteApexHandlerAsId? string - The ID of the user who is executing the handler. Requires Manage User permission.
- UsernameLabel? string - Login prompt on login page when the My Domain login page type is Discovery. It supports localization with custom labels.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: NamedCredentialSObject
Represents a named credential, which specifies the URL of a callout endpoint and its required authentication parameters in one definition. A named credential can be specified as an endpoint to simplify the setup of authenticated callouts.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. In managed packages, this field prevents naming conflicts on package installations. With this field, a developer can change the object’s name in a managed package and the changes are reflected in a subscriber’s organization.
- Language? string - The language of the MasterLabel.
- MasterLabel? string - The master label for the named credential. This display value is the internal label that doesn’t get translated.
- NamespacePrefix? string - The namespace prefix that is associated with this object. Each Developer Edition org that creates a managed package has a unique namespace prefix. Limit: 15 characters. You can refer to a component in a managed package by using the namespacePrefix__componentName notation.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Endpoint? string - The root URL of the endpoint.
- PrincipalType? string - Tracks users who are accessing the external system. Anonymous implies that a user identity isn’t specified for external system access. Named Principal uses one user identity for all users to access the external system.
- CalloutOptionsGenerateAuthorizationHeader? boolean - Indicates whether Salesforce automatically generates a standard authorization header for each callout to the named credential–defined endpoint. This field is available in API version 35.0 and later.
- CalloutOptionsAllowMergeFieldsInHeader? boolean - For Apex callouts, indicates whether the code can use merge fields to populate HTTP headers with org data. This field is available in API version 35.0 and later.
- CalloutOptionsAllowMergeFieldsInBody? boolean - For Apex callouts, indicates whether the code can use merge fields to populate HTTP request bodies with org data. This field is available in API version 35.0 and later.
- AuthProviderId? string - Salesforce ID of the authentication provider, which defines the service that provides the login process and approves access to the external system. Only users with the “Customize Application” and “Manage AuthProviders” permissions can view this field. This field is available in API version 39.0 and later.
- JwtIssuer? string - Specify who issued the JSON Web Token using a case-sensitive string. This field is available in API version 46.0 and later.
- JwtFormulaSubject? string - Formula string calculating the JSON Web Token’s subject. API names and constant strings, in single quotes, can be included. Allows a dynamic Subject unique per user requesting the token. For example, 'User='+$User.Id. Use this field when PrincipalType is set to PerUser. Corresponds to Per User Subject in the user interface. This field is available in API version 46.0 and later.
- JwtTextSubject? string - Static text, without quotes, that specifies the JSON Web Token subject. Use this field when PrincipalType is set to NamedUser. Corresponds to Named Principal Subject in the user interface. This field is available in API version 46.0 and later.
- JwtValidityPeriodSeconds? int - The number of seconds that the JSON Web Token is valid. This field is available in API version 46.0 and later.
- JwtAudience? string - External service or other allowed recipients for the JSON Web Token. Written as JSON, with a quoted string for a single audience and an array of quoted strings for multiple audiences. Single audience example: “aud1”. Multiple audiences example: [”aud1”, “aud2”, “aud3”]. This field is available in API version46.0 and later.
- AuthTokenEndpointUrl? string - The URL where SON Web Tokens (JWTs) are exchanged for access tokens. This field is available in API version 46.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: NameSObject
Non-queryable object that provides information about foreign key traversals when the foreign key has more than one parent.
Fields
- Id? string - Unique identifier for the record
- Name? string - Name of the parent of the object queried. If the parent is a user, contact, or lead, the value is a concatenation of the FirstName, MiddleName, LastName, and Suffix fields of the related record.
- LastName? string - The last name of the user, contact, or lead.
- FirstName? string - The first name of the user, contact, or lead.
- Type? string - A list of the types of sObjects that can be an owner of this object. You can use this field to filter on a type of owner, for example, return only the leads owned by a user.
- Alias? string - The user alias. This field contains a value only if the related record is a user.
- UserRoleId? string - The ID of the user role associated with this object.
- RecordTypeId? string - ID of the record type
- IsActive? boolean - Indicates whether the related record is an active user (true) or not (false). This field contains a value only if the related record is a user.
- ProfileId? string - ID of the user’s Profile. Only populated if the related record is a user.
- Title? string - The title of the user, for example CFO or CEO.
- Email? string - The email address of the user or group (queue).
- Phone? string - The phone number of the user. This field contains a value only if the related record is a user.
- NameOrAlias? string - Name or alias
- Username? string - Contains the name that a user enters to log into the API or the user interface. The value for this field is in the form of an email address, and is only populated if the related record is a user.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: NoteAndAttachmentSObject
This read-only object contains all notes and attachments associated with an object.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- IsNote? boolean - Indicates whether the object contains a note (true) or an attachment (false).
- ParentId? string - ID of the parent object.
- Title? string - Title of the note.
- IsPrivate? boolean - If true, only the note owner or a user with the “Modify All Data” permission can view the note or query it via the API. Note that if a regular user who does not have “Modify All Data” permission sets this field to true on a note that they do not own, then they can no longer query, delete, or update that note. Label is Private.
- OwnerId? string - ID of the user who owns the note and attachment.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: NoteSObject
Represents a note, which is text associated with a custom object or a standard object, such as a Contact, Contract, or Opportunity.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- ParentId? string - Required. ID of the object associated with the note.
- Title? string - Title of the note.
- IsPrivate? boolean - If true, only the note owner or a user with the “Modify All Data” permission can view the note or query it via the API. Note that if a user who does not have the “Modify All Data” permission sets this field to true on a note that they do not own, then they can no longer query, delete, or update the note. Label is Private.
- Body? string - Body of the note. Limited to 32 KB.
- OwnerId? string - ID of the user who owns the note.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OAuth2PasswordGrantConfig
OAuth2 Password Grant Configs
Fields
- Fields Included from *OAuth2PasswordGrantConfig
- tokenUrl string
- username string
- password string
- clientId string
- clientSecret string
- scopes string|string[]
- refreshConfig RefreshConfig|"INFER_REFRESH_CONFIG"
- defaultTokenExpTime decimal
- clockSkew decimal
- optionalParams map<string>
- credentialBearer CredentialBearer
- clientConfig ClientConfiguration
- tokenUrl string(default "https://login.salesforce.com/services/oauth2/token") - Token URL
salesforce.types: OAuth2RefreshTokenGrantConfig
OAuth2 Refresh Token Grant Configs
Fields
- Fields Included from *OAuth2RefreshTokenGrantConfig
- refreshUrl string(default "https://login.salesforce.com/services/oauth2/token") - Refresh URL
salesforce.types: OauthCustomScopeAppSObject
Represents the name of the connected app to which the custom scope is assigned.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OauthConsumerId? string - ID of the associated OAuth consumer
- OauthCustomScopeId? string - The name of the connected app to which the custom scope is assigned. If the connected app is part of a package, include the package’s namespace prefix with the connected app’s name. Use the following format: <namespace_prefix>__<connected_app>. Use two underscores (_) between the namespace prefix and connected app’s name.
- ApplicationId? string - ID of the associated application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OauthCustomScopeSObject
Represents a permission defining the protected data that a connected app can access from an external entity when Salesforce is the OAuth authorization provider.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Use when referring to the OAuth custom scope from a program. This label must be unique, and can include only alphanumeric characters and underscores.
- Language? string - Indicates the default language defined for the developing org.
- MasterLabel? string - The master label for the custom scope record. This label must be unique, and can include only alphanumeric characters and underscores.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - The description of the permission provided to the connected app by the scope. The custom scope’s description must be unique, can only include alphanumeric characters, and can be up to 60 characters long.
- IsPublic? boolean - Indicates whether the object is included in the connected app’s OpenID Connect discovery endpoint. For more information, see OpenID Connect Discovery Endpoint.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OauthTokenExchangeHandlerSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - Unique developer name for the record
- Language? string - Language associated with the record
- MasterLabel? string - Master label for the record
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - Description of the record
- IsEnabled? boolean - Indicates whether the record is enabled (true) or not (false)
- SupportedTokenTypesAccessToken? boolean - Supported token types access token
- SupportedTokenTypesRefreshToken? boolean - Supported token types refresh token
- SupportedTokenTypesIdToken? boolean - Supported token types ID token
- SupportedTokenTypesSaml2? boolean - Supported token types saml 2
- SupportedTokenTypesJwt? boolean - Supported token types jwt
- IsUserCreationAllowed? boolean - Indicates whether the record is user creation allowed (true) or not (false)
- TokenHandlerApexId? string - ID of the associated token handler apex
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OauthTokenExchHandlerAppSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OauthTokenExchangeHandlerId? string - ID of the associated OAuth token exchange handler
- OauthConsumerId? string - ID of the associated OAuth consumer
- ApplicationId? string - ID of the associated application
- IsDefault? boolean - Indicates whether this is the default record (true) or not (false)
- ApexExecutionUserId? string - ID of the associated apex execution user
- ConnectedApplicationId? string - ID of the associated connected application
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OauthTokenSObject
Represents an OAuth access token for connected app authentication. Use this object to create a user interface for token management.
Fields
- Id? string - Reserved for future use. Currently, the value is always null.
- AccessToken? string - The refresh token for authorization.
- UserId? string - The owner of the token.
- RequestToken? string - The authorization code that was used to request the corresponding AccessToken. With this authorization code, you can revoke the corresponding AccessToken by passing the DeleteToken.
- CreatedDate? string - Date and time when the record was created
- AppName? string - The label for the connected app that’s associated with this OAuth token.
- LastUsedDate? string - The most recent date when the OAuth token was used.
- UseCount? int - How often the token has been used.
- DeleteToken? string - A token that can be used at the revoke OAuth token endpoint to remove this token.
- AppMenuItemId? string - The unique ID for the App Picker menu item that’s associated with this OAuth token.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ObjectPermissionsSObject
Represents the enabled object permissions for the parent PermissionSet.
Fields
- Id? string - Unique identifier for the record
- ParentId? string - The Id of this object’s parent PermissionSet.
- SobjectType? string - The object’s API name. For example, Merchandise__c.
- PermissionsCreate? boolean - If true, users assigned to the parent PermissionSet can create records for this object. Requires PermissionsRead for the same object to be true.
- PermissionsRead? boolean - If true, users assigned to the parent PermissionSet can view records for this object.
- PermissionsEdit? boolean - If true, users assigned to the parent PermissionSet can edit records for this object. Requires PermissionsRead for the same object to be true.
- PermissionsDelete? boolean - If true, users assigned to the parent PermissionSet can delete records for this object. Requires PermissionsRead and PermissionsEdit for the same object to be true.
- PermissionsViewAllRecords? boolean - If true, users assigned to the parent PermissionSet can view all records for this object, regardless of sharing settings. Requires PermissionsRead for the same object to be true.
- PermissionsModifyAllRecords? boolean - If true, users assigned to the parent PermissionSet can edit all records for this object, regardless of sharing settings. Requires PermissionsRead, PermissionsDelete, PermissionsEdit, and PermissionsViewAllRecords for the same object to be true.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OnboardingMetricsSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- UserId? string - ID of the user associated with the record
- SeenCount? int - Number of seen
- ExperienceName? string - Name of the experience
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpenActivitySObject
This read-only object is displayed in a related list of open activities—future events and open tasks—related to an object. It includes activities for all contacts related to the object. OpenActivity fields for phone calls are only available if your organization uses Salesforce CRM Call Center.
Fields
- Id? string - Unique identifier for the record
- AccountId? string - Indicates the ID of the related account, which is determined as follows: The account associated with the WhatId, if it exists; or The account associated with the WhoId, if it exists; otherwise null
- WhoId? string - The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID. The label is Name ID. If Shared Activities is enabled, the value of this field is the ID of the related lead or primary contact. If you add, update, or remove the WhoId field, you might encounter problems with triggers, workflows, and data validation rules that are associated with the record. The label is Name ID.
- WhatId? string - The WhatId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects. WhatIds are polymorphic. Polymorphic means a WhatId is equivalent to the ID of a related object. The label is Related To ID.
- Subject? string - Contains the subject of the task or event.
- IsTask? boolean - If the value of this field is set to true, then the activity is a task; if the value is set to false, then the activity is an event. Label is Task.
- ActivityDate? string - Indicates one of the following: The due date of a task The date of an event if IsAllDayEvent is set to true This field has a time stamp that is always set to midnight in the Universal Time Coordinated (UTC) time zone. The time stamp doesn’t represent the time of the activity; don’t attempt to alter it to accommodate time zone differences. Label is Date.
- ActivityDateTime? string - Contains the event’s due date if the IsAllDayEvent flag is set to false. The time portion of this field is always transferred in the Coordinated Universal Time (UTC) time zone. Translate the time portion to or from a local time zone for the user or the application, as appropriate. Label is Due Date Time.The value for this field and StartDateTime must match, or one of them must be null.
- OwnerId? string - Indicates the ID of the user or group who owns the activity.
- Status? string - Indicates the current status of a task, such as in progress or complete. Each predefined status field sets a value for IsClosed. To obtain picklist values, query TaskStatus.
- Priority? string - Indicates the priority of a task, such as high, normal, or low.
- IsHighPriority? boolean - Indicates a high-priority task. This field is derived from the Priority field.
- ActivityType? string - Represents one of the following values: Call, Email, Meeting, or Other. Label is Type. These are default values, and can be changed.
- IsClosed? boolean - Indicates whether a task is closed; value is always false). This field is set indirectly by setting Status on the task—each picklist value has a corresponding IsClosed value. Label is Closed.
- IsAllDayEvent? boolean - If the value of this field is set to true, then the activity is an event spanning a full day, and the ActivityDate defines the date of the event. If the value of this field is set to false, then the activity may be an event spanning less than a full day, or it may be a task. Label is All-Day Event.
- IsVisibleInSelfService? boolean - If the value of this field is set to true, then the activity can be viewed in the self-service portal. Label is Visible in Self-Service.
- DurationInMinutes? int - Indicates the duration of the event or task.
- Location? string - If the activity is an event, then this field represents the location of the event. If the activity is a task, then the value is null.
- Description? string - Contains a description of the event or task. Limit is 32 KB.
- IsDeleted? boolean - Indicates whether the activity has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CallDurationInSeconds? int - Duration of the call in seconds.
- CallType? string - The type of call being answered: Inbound, Internal, or Outbound.
- CallDisposition? string - Represents the result of a given call, for example, “we'll call back,” or “call unsuccessful.” Limit is 255 characters.
- CallObject? string - Name of a call center. Limit is 255 characters.
- ReminderDateTime? string - Represents the time at which a reminder is scheduled to fire if IsReminderSet is set to true. If IsReminderSet is set to false, then either the user has deselected the reminder checkbox in the user interface or the reminder has already fired at the time indicated by the value.
- IsReminderSet? boolean - Indicates whether a reminder is set for an activity (true) or not (false).
- EndDateTime? string - Indicates the end date and time of the event or task. Available in versions 27.0 and later. This field is optional, depending on the following: If IsAllDayEvent is true, you can supply a value for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time. If both fields are null, the duration defaults to one day. If IsAllDayEvent is false, a value must be supplied for either DurationInMinutes or EndDateTime. Supplying values in both fields is allowed if the values add up to the same amount of time.
- StartDateTime? string - Start date and time of the record
- ActivitySubtype? string - Activity subtype
- AlternateDetailId? string - The ID of a record the activity is related to which contains more details about the activity. For example, an activity can be related to an EmailMessage record.
- CompletedDateTime? string - Date and time when the record was completed
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OperatingHoursChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- Description? string - Description of the record
- TimeZone? string - Time zone
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OperatingHoursFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OperatingHoursHolidayFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OperatingHoursHolidaySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- OperatingHoursHolidayNumber? string - Operating hours holiday number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- OperatingHoursId? string - ID of the associated operating hours
- HolidayId? string - ID of the associated holiday
- DateAndTime? string - Date and time
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OperatingHoursShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OperatingHoursSObject
Represents the hours in which a service territory, service resource, or account is available for field service work in Field Service and Lightning Scheduler.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - ID of the user who owns the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The name of the operating hours. For example, Summer Hours, Winter Hours, or Peak Season Hours.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The date when the operating hours record was last viewed.
- LastReferencedDate? string - The date when the operating hours record was last modified. Its label in the user interface is Last Modified Date.
- Description? string - The description of the operating hours. Add any details that aren’t included in the name.
- TimeZone? string - The time zone which the operating hours fall within.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- AccountId? string - ID of the associated account
- IsPrivate? boolean - Indicates whether the record is private (true) or not (false)
- Name? string - Name of the record
- Description? string - Description of the record
- StageName? string - Current stage of the opportunity
- Amount? decimal - Amount associated with the record
- Probability? decimal - Probability of the opportunity closing
- ExpectedRevenue? decimal - Expected revenue
- TotalOpportunityQuantity? decimal - Total opportunity quantity
- CloseDate? string - Expected close date
- Type? string - Type or category of the record
- NextStep? string - Next step
- LeadSource? string - Source of the lead
- IsClosed? boolean - Indicates whether the record is closed (true) or not (false)
- IsWon? boolean - Indicates whether the opportunity is won (true) or not (false)
- ForecastCategory? string - Forecast category of the record
- ForecastCategoryName? string - Name of the forecast category
- CampaignId? string - ID of the associated campaign
- HasOpportunityLineItem? boolean - Indicates whether the record has opportunity line item (true) or not (false)
- Pricebook2Id? string - ID of the associated price book
- OwnerId? string - ID of the user who owns the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- LastStageChangeDate? string - Date of the last stage change
- ContactId? string - ID of the associated contact
- LastAmountChangedHistoryId? string - ID of the associated last amount changed history
- LastCloseDateChangedHistoryId? string - ID of the associated last close date changed history
- DeliveryInstallationStatus__c? string - Delivery installation status c
- TrackingNumber__c? string - Tracking number c
- OrderNumber__c? string - Order number c
- CurrentGenerators__c? string - Current generators c
- MainCompetitors__c? string - Main competitors c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityCompetitorSObject
Represents a competitor on an Opportunity.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - Required. ID of the associated Opportunity.
- CompetitorName? string - Name of the competitor.
- Strengths? string - Description of the competitor’s strengths. Limit: 1,000 characters.
- Weaknesses? string - Description of the competitor’s weaknesses. Limit: 1,000 characters.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityContactRoleChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OpportunityId? string - ID of the associated opportunity
- ContactId? string - ID of the associated contact
- Role? string - Role associated with the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityContactRoleSObject
Represents the role that a Contact plays on an Opportunity.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - Required. ID of an associated Opportunity. This field is non-nullable, and it cannot be updated. You must provide a value for this field when creating new records. You can’t change it after it has been created.
- ContactId? string - ID of an associated Contact. The API applies user access rights to the associated Opportunity for this object, but not to the associated Contact. The API may return rows from a query on this object that include this field’s values for contacts to which the user does not have sufficient access rights. It may also return values for this field for contacts that have been deleted. In either case, the client must perform a query on the contact table for this field’s value to determine whether the Contact is accessible to the user and has not been deleted.
- Role? string - Name of the role played by the associated Contact on the Opportunity, such as Business User or Decision Maker.
- IsPrimary? boolean - Indicates whether the associated Contact plays the primary role on the Opportunity (true) or not (false). Each Opportunity has only one primary contact. Label is Primary.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false). The IsDeleted flag is usable only when the parent record is deleted to the recycle bin, and not when the OpportunityContactRole record is deleted directly. Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityFieldHistorySObject
Represents the history of changes to the values in the fields of an opportunity.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- OpportunityId? string - ID of the Opportunity. Label is Opportunity ID.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - The name of the field that was changed.
- DataType? string - Data type of the field that was changed
- OldValue? string - The latest value of the field before it was changed.
- NewValue? string - The new value of the field that was changed.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityHistorySObject
Represents the stage history of an Opportunity.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - ID of the associated Opportunity.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- StageName? string - Name of the current stage of the opportunity (for example, Prospect or Proposal).
- Amount? decimal - Estimated total sale amount.
- ExpectedRevenue? decimal - Calculated revenue based on the Amount and Probability fields.
- CloseDate? string - Date when the opportunity is expected to close.
- Probability? decimal - Percentage of estimated confidence in closing the opportunity.
- ForecastCategory? string - Category that determines the column in which an opportunity is totaled in a forecast. Label is To ForecastCategory.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- PrevAmount? decimal - The value in the opportunity’s Amount field before the update of the opportunity.In OpportunityHistory records created before Winter ’21, the value is null.Available in API version 50.0 and later.
- PrevCloseDate? string - The value in the opportunity’s Close Date field before the update of the opportunity.In OpportunityHistory records created before Winter ’21, the value is null.Available in API version 50.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityLineItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OpportunityId? string - ID of the associated opportunity
- SortOrder? int - Sort order for the record
- PricebookEntryId? string - ID of the associated price book entry
- Product2Id? string - ID of the associated product
- ProductCode? string - Product code
- Name? string - Name of the record
- Quantity? decimal - Quantity associated with the record
- TotalPrice? decimal - Total price for the record
- UnitPrice? decimal - Unit price for the record
- ListPrice? decimal - List price
- ServiceDate? string - Date of the service
- Description? string - Description of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityLineItemSObject
Represents an opportunity line item, which is a member of the list of Product2 products associated with an Opportunity.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - Required. ID of the associated Opportunity.
- SortOrder? int - Number indicating the sort order selected by the user. Client applications can use this to match the sort order in Salesforce.
- PricebookEntryId? string - Required. ID of the associated PricebookEntry. Exists only for those organizations that have Products enabled as a feature. In API versions 1.0 and 2.0, you can specify values for either this field or ProductId, but not both. For this reason, both fields are declared nillable. In API version 3.0 and later, you must specify values for this field instead of ProductId.
- Product2Id? string - The ID of the related Product2 record. This is a read-only field available in API version 30.0 and later. Use the PricebookEntryId field instead, specifying the ID of the PricebookEntry record.
- ProductCode? string - This read-only field is available in API version 30.0 and later. It references the value in the ProductCode field of the related Product2 record.
- Name? string - The opportunity line item name (known as “Opportunity Product” in the user interface). This read-only field is available in API version 30.0 and later.
- Quantity? decimal - Read-only if this record has a quantity schedule, a revenue schedule, or both a quantity and a revenue schedule. When updating these records: If you specify Quantity without specifying the UnitPrice, the UnitPrice value will be adjusted to accommodate the new Quantity value, and the TotalPrice will be held constant. If you specify both Discount and Quantity, you must also specify either TotalPrice or UnitPrice so the system can determine which one to automatically adjust.
- TotalPrice? decimal - This field is available only for backward compatibility. It represents the total price of the OpportunityLineItem. If you do not specify UnitPrice, this field is required. If you specify Discount and Quantity, this field or UnitPrice is required. When updating these records, you can change either this value or the UnitPrice, but not both at the same time. This field is nillable, but you can’t set both TotalPrice and UnitPrice to null in the same update request. To insert the TotalPrice via the API (given only a unit price and the quantity), calculate this field as the unit price multiplied by the quantity. This field is read-only if the opportunity line item has a revenue schedule. If the opportunity line item does not have a schedule or only has quantity schedule, this field can be updated.
- UnitPrice? decimal - The unit price for the opportunity line item. In the Salesforce user interface, this field’s value is calculated by dividing the total price of the opportunity line item by the quantity listed for that line item. Label is Sales Price. This field or TotalPrice is required. You can’t specify both. If you specify Discount and Quantity, this field or TotalPrice is required.
- ListPrice? decimal - Corresponds to the UnitPrice on the PricebookEntry that is associated with this line item, which can be in the standard price book or a custom price book. A client application can use this information to show whether the unit price (or sales price) of the line item differs from the price book entry list price.
- ServiceDate? string - Date when the product revenue will be recognized and the product quantity will be shipped. Opportunity Close Date—ServiceDate is ignored. Product Date—ServiceDate is used if not null. Schedule Date—ServiceDate is used if not null and there are no revenue schedules present for this line item, that is, there are no OpportunityLineItemSchedule records with a field Type value of Revenue that are children of this record.
- Description? string - Text description of the opportunity line item. Limit: 80 characters.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed. Available in API version 50.0 and later.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record. Available in API version 50.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityPartnerSObject
This object represents a partner relationship between an Account and an Opportunity. An OpportunityPartner record is created automatically when a Partner record is created for a partner relationship between an account and an opportunity.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - ID of the Opportunity that is in the partner relationship.
- AccountToId? string - ID of the partner Account in the partner relationship.
- Role? string - The UserRole that the Account has on the Opportunity. For example, Reseller or Manufacturer.
- IsPrimary? boolean - Indicates whether the account is the opportunity’s primary partner (true) or not (false). Label is Primary.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ReversePartnerId? string - ID of the account in a partner relationship.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityRelatedDeleteLogSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeleteLog? string - Delete log
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OpportunityId? string - ID of the associated opportunity
- Parent? string - Parent
- FieldName? string - Name of the field
- DataType? string - Data type of the field that was changed
- SobjectType? string - Type of the sobject
- Value? string - Value associated with the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityShareSObject
Represents a sharing entry on an Opportunity.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - ID of the opportunity associated with this sharing entry. This field can’t be updated.
- UserOrGroupId? string - ID of the user or group that has been given access to the opportunity. This field can’t be updated.
- OpportunityAccessLevel? string - Level of access that the user or group has to the opportunity. The possible values are: Read Edit All—This value is not valid when creating, updating, or deleting records. This field must be set to an access level that’s higher than the org’s default access level for opportunities.
- RowCause? string - Reason that this sharing entry exists. You can write to this field when its value is either omitted or set to Manual (default). You can create a value for this field in API versions 32.0 and later with the correct organization-wide sharing settings.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunitySObject
Represents an opportunity, which is a sale or pending deal.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted.
- AccountId? string - ID of the account associated with this opportunity.
- IsPrivate? boolean - Indicates whether the record is private (true) or not (false)
- Name? string - Required. A name for this opportunity. Limit: 120 characters.
- Description? string - Text description of the opportunity. Limit: 32,000 characters.
- StageName? string - Required. Current stage of this record. The StageName field controls several other fields on an opportunity. Each of the fields can be directly set or implied by changing the StageName field. In addition, the StageName field is a picklist, so it has additional members in the returned describeSObjectResult to indicate how it affects the other fields. To obtain the stage name values in the picklist, query the OpportunityStage object. If the StageName is updated, then the ForecastCategoryName, IsClosed, IsWon, and Probability are automatically updated based on the stage-category mapping.
- Amount? decimal - Estimated total sale amount. For opportunities with products, the amount is the sum of the related products. Any attempt to update this field, if the record has products, will be ignored. The update call will not be rejected, and other fields will be updated as specified, but the Amount will be unchanged.
- Probability? decimal - Percentage of estimated confidence in closing the opportunity. It is implied, but not directly controlled, by the StageName field. You can override this field to a different value than what is implied by the StageName. If you're changing the Probability field through the API using a partner WSDL call, or an Apex before trigger, and the value may have several decimal places, we recommend rounding the value to a whole number. For example, the following Apex in a before trigger uses the round method to change the field value: o.probability = o.probability.round();
- ExpectedRevenue? decimal - Read-only field that is equal to the product of the opportunity Amount field and the Probability. You can’t directly set this field, but you can indirectly set it by setting the Amount or Probability fields.
- TotalOpportunityQuantity? decimal - Number of items included in this opportunity. Used in quantity-based forecasting.
- CloseDate? string - Required. Date when the opportunity is expected to close.
- Type? string - Type of opportunity. For example, Existing Business or New Business. Label is Opportunity Type.
- NextStep? string - Description of next task in closing opportunity. Limit: 255 characters.
- LeadSource? string - Source of this opportunity, such as Advertisement or Trade Show.
- IsClosed? boolean - Directly controlled by StageName. You can query and filter on this field, but you can’t directly set it in a create, upsert, or update request. It can only be set via StageName. Label is Closed.
- IsWon? boolean - Directly controlled by StageName. You can query and filter on this field, but you can’t directly set the value. It can only be set via StageName. Label is Won.
- ForecastCategory? string - Restricted picklist field. It is implied, but not directly controlled, by the StageName field. You can override this field to a different value than is implied by the StageName value. The values of this field are fixed enumerated values. The field labels are localized to the language of the user performing the operation, if localized versions of those labels are available for that language in the user interface. In API version 12.0 and later, the value of this field is automatically set based on the value of the ForecastCategoryName and can’t be updated any other way. The field properties Create, Defaulted on create, Nillable, and Update are not available in version 12.0.
- ForecastCategoryName? string - Available in API version 12.0 and later. The name of the forecast category. It is implied, but not directly controlled, by the StageName field. You can override this field to a different value than is implied by the StageName value.
- CampaignId? string - ID of a related Campaign. This field is defined only for those organizations that have the campaign feature Campaigns enabled. The User must have read access rights to the cross-referenced Campaign object in order to create or update that campaign into this field on the opportunity.
- HasOpportunityLineItem? boolean - Read-only field that indicates whether the opportunity has associated line items. A value of true means that Opportunity line items have been created for the opportunity. An opportunity can have opportunity line items only if the opportunity has a price book. The opportunity line items must correspond to PricebookEntry objects that are listed in the opportunity Pricebook2. However, you can insert opportunity line items on an opportunity that does not have an associated Pricebook2. For the first opportunity line item that you insert on an opportunity without a Pricebook2, the API automatically sets the Pricebook2Id field, if the opportunity line item corresponds to a PricebookEntry in an active Pricebook2 that has a CurrencyIsoCode field that matches the CurrencyIsoCode field of the opportunity. If the Pricebook2 is not active or the CurrencyIsoCode fields do not match, then the API returns an error. You can’t update the Pricebook2Id or PricebookId fields if opportunity line items exist on the Opportunity. You must delete the line items before attempting to update the PricebookId field.
- Pricebook2Id? string - ID of a related Pricebook2 object. The Pricebook2Id field indicates which Pricebook2 applies to this opportunity. The Pricebook2Id field is defined only for those organizations that have products enabled as a feature. You can specify values for only one field (Pricebook2Id or PricebookId)—not both fields. For this reason, both fields are declared nillable.
- OwnerId? string - ID of the User who has been assigned to work this opportunity. If you update this field, the previous owner's access becomes Read Only or the access specified in your organization-wide default for opportunities, whichever is greater. If you have set up opportunity teams in your organization, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastActivityDate? string - Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record.
- PushCount? int - Number of push
- LastStageChangeDate? string - Date of the last stage change
- FiscalQuarter? int - Represents the fiscal quarter. Valid values are 1, 2, 3, or 4.
- FiscalYear? int - Represents the fiscal year, for example, 2006.
- Fiscal? string - If fiscal years are not enabled, the name of the fiscal quarter or period in which the opportunity CloseDate falls. Value should be in YYY Q format, for example, '2006 1' for first quarter of 2006.
- ContactId? string - ID of the contact associated with this opportunity, set as the primary contact. Read-only field that is derived from the opportunity contact role, which is created at the same time the opportunity is created. This field can only be populated when it’s created, and can’t be updated. To update the value in this field, change the IsPrimary flag on the OpportunityContactRole associated with this opportunity. Available in API version 46.0 and later.
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- HasOpenActivity? boolean - Indicates whether an opportunity has an open event or task (true) or not (false). Available in API version 35.0 and later.
- HasOverdueTask? boolean - Indicates whether an opportunity has an overdue task (true) or not (false). Available in API version 35.0 and later.
- LastAmountChangedHistoryId? string - ID of the OpportunityHistory record that contains information about when the opportunity Amount field was last updated in Winter ’21 or later. Information includes the date and time of the change and the user who made the change. Available in API version 50.0 and later.
- LastCloseDateChangedHistoryId? string - ID of the OpportunityHistory record that contains information about when the opportunity Close Date field was last updated in Winter ’21 or later. Information includes the date and time of the change and the user who made the change. Available in API version 50.0 and later.
- DeliveryInstallationStatus__c? string - Delivery installation status c
- TrackingNumber__c? string - Tracking number c
- OrderNumber__c? string - Order number c
- CurrentGenerators__c? string - Current generators c
- MainCompetitors__c? string - Main competitors c
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OpportunityStageSObject
Represents the stage of an Opportunity in the sales pipeline, such as New Lead, Negotiating, Pending, Closed, and so on.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - Master label for this opportunity stage value. This display value is the internal label that does not get translated. Limit: 255 characters.
- ApiName? string - Uniquely identifies a picklist value so it can be retrieved without using an id or master label.
- IsActive? boolean - Indicates whether this opportunity stage value is active (true) or not (false). Inactive opportunity stage values are not available in the picklist and are retained for historical purposes only.
- SortOrder? int - Number used to sort this value in the opportunity stage picklist. These numbers are not guaranteed to be sequential, as some previous opportunity stage values might have been deleted.
- IsClosed? boolean - Indicates whether this opportunity stage value represents a closed opportunity (true) or not (false). Multiple opportunity stage values can represent a closed opportunity. Label is Closed.
- IsWon? boolean - Indicates whether this opportunity stage value represents a won opportunity (true) or not (false). Multiple opportunity stage values can represent a won opportunity. Label is Won.
- ForecastCategory? string - The default forecast category for this opportunity stage value. The forecast category automatically determines how opportunities are tracked and totaled in a forecast.
- ForecastCategoryName? string - Available in API version 12.0 and later. The default forecast category value for this opportunity stage value.
- DefaultProbability? decimal - The default percentage estimate of the confidence in closing a specific opportunity for this opportunity stage value. Label is Probability (%).
- Description? string - Description of this opportunity stage value. Limit: 255 characters.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- ContractId? string - ID of the associated contract
- AccountId? string - ID of the associated account
- Pricebook2Id? string - ID of the associated price book
- OriginalOrderId? string - ID of the associated original order
- EffectiveDate? string - Date when the record becomes effective
- EndDate? string - End date of the record
- IsReductionOrder? boolean - Indicates whether the record is reduction order (true) or not (false)
- Status? string - Current status of the record
- Description? string - Description of the record
- CustomerAuthorizedById? string - ID of the associated customer authorized by
- CustomerAuthorizedDate? string - Date of the customer authorized
- CompanyAuthorizedById? string - ID of the associated company authorized by
- CompanyAuthorizedDate? string - Date of the company authorized
- Type? string - Type or category of the record
- BillingStreet? string - Billing street address
- BillingCity? string - Billing city
- BillingState? string - Billing state or province
- BillingPostalCode? string - Billing postal code
- BillingCountry? string - Billing country
- BillingLatitude? decimal - Latitude coordinate of the billing address
- BillingLongitude? decimal - Longitude coordinate of the billing address
- BillingGeocodeAccuracy? string - Accuracy level of the geocode for the billing address
- BillingAddress? record {} - Compound billing address field
- ShippingStreet? string - Shipping street address
- ShippingCity? string - Shipping city
- ShippingState? string - Shipping state or province
- ShippingPostalCode? string - Shipping postal code
- ShippingCountry? string - Shipping country
- ShippingLatitude? decimal - Latitude coordinate of the shipping address
- ShippingLongitude? decimal - Longitude coordinate of the shipping address
- ShippingGeocodeAccuracy? string - Accuracy level of the geocode for the shipping address
- ShippingAddress? record {} - Compound shipping address field
- Name? string - Name of the record
- PoDate? string - Date of the po
- PoNumber? string - Po number
- OrderReferenceNumber? string - Order reference number
- BillToContactId? string - ID of the associated bill to contact
- ShipToContactId? string - ID of the associated ship to contact
- ActivatedDate? string - Date when the record was activated
- ActivatedById? string - ID of the associated activated by
- StatusCode? string - Status code of the record
- OrderNumber? string - Number of the order
- TotalAmount? decimal - Total amount for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderHistorySObject
Represents historical information about changes that have been made to the standard fields of the associated order, or to any custom fields with history tracking enabled.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- OrderId? string - ID of the order associated with this record.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the order field that was modified, or a special value to indicate some other modification to the order.
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the modified order field. Maximum of 255 characters.
- NewValue? string - New value of the modified order field. Maximum of 255 characters.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderItemChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- Product2Id? string - ID of the associated product
- OrderId? string - ID of the associated order
- PricebookEntryId? string - ID of the associated price book entry
- OriginalOrderItemId? string - ID of the associated original order item
- AvailableQuantity? decimal - Available quantity
- Quantity? decimal - Quantity associated with the record
- UnitPrice? decimal - Unit price for the record
- ListPrice? decimal - List price
- ServiceDate? string - Date of the service
- EndDate? string - End date of the record
- Description? string - Description of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- OrderItemNumber? string - Order item number
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderItemFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderItemHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- OrderItemId? string - ID of the associated order item
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderItemSObject
Represents an order product that your organization sells.
Fields
- Id? string - Unique identifier for the record
- Product2Id? string - ID of the Product2 associated with this OrderItem.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- OrderId? string - ID of the order that this order product is a child of.
- PricebookEntryId? string - Required. ID of the associated PricebookEntry. This field must be specified when creating OrderItem records. It can’t be changed in an update.
- OriginalOrderItemId? string - Required if isReductionOrder on the parent order is true.
- AvailableQuantity? decimal - Amount of an order product that is available to be reduced. Value must be greater than or equal to 0. An order product is reducible only if AvailableQuantity is greater than 0. Value is always 0 if the order product’s parent order is a reduction order.
- Quantity? decimal - Number of units of this order product.
- UnitPrice? decimal - Unit price for the order product.
- ListPrice? decimal - List price for the order product. Value is inherited from the associated PriceBookEntry upon order product creation.
- TotalPrice? decimal - Total price for this order product. The calculations for this field’s value are different if Commerce Orders is enabled.
- ServiceDate? string - Start date for the order product.
- EndDate? string - Optional. Last day the order product is available.
- Description? string - Text description of this object.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrderItemNumber? string - Automatically generated number that identifies the order product.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderShareSObject
Represents a sharing entry on an Order.
Fields
- Id? string - Unique identifier for the record
- OrderId? string - ID of the order associated with this sharing entry. This field can't be updated.
- UserOrGroupId? string - ID of the user or group that has been given access to the order. This field can't be updated.
- OrderAccessLevel? string - Level of access that the user or group has to the order.
- RowCause? string - The reason that the user has access to the order.
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderSObject
Represents an order associated with a contract or an account.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - Required. ID of the User or queue that owns this order.
- ContractId? string - ID of the contract associated with this order. Can only be updated when the order’s StatusCode value is Draft.
- AccountId? string - Required. ID of the Account associated with this order. Can only be updated when the order’s StatusCode value is Draft.
- Pricebook2Id? string - Required. ID of the price book associated with this order.
- OriginalOrderId? string - Optional. ID of the original order that a reduction order is reducing, if the reduction order is reducing a single order. Label is Original Order. Editable only if isReductionOrder is true. If the reduction order is reducing more than one order, leave blank.
- EffectiveDate? string - Date at which the order becomes effective. Label is Order Start Date.
- EndDate? string - Date at which the order ends. Label is Order End Date.
- IsReductionOrder? boolean - Read-only. Determines whether an order is a reduction order. Label is Reduction Order.
- Status? string - Picklist of values that indicate order status. Each value is within one of two status categories defined in StatusCode. For example, the status picklist might contain Draft, Ready for Review, and Ready for Activation values with a StatusCode of Draft.
- Description? string - Description of the order.
- CustomerAuthorizedById? string - ID of the contact who authorized the order.
- CustomerAuthorizedDate? string - Date on which the contact authorized the order.
- CompanyAuthorizedById? string - ID of the user who authorized the account associated with the order.
- CompanyAuthorizedDate? string - The date on which your organization authorized the order.
- Type? string - If you want to show more information about your order, you can add custom values to the Type picklist. By default, the Type field doesn't perform any actions or show any values.
- BillingStreet? string - Street address for the billing address.
- BillingCity? string - City for the billing address for this order. Maximum size is 40 characters.
- BillingState? string - State for the billing address for this order. Maximum size is 80 characters.
- BillingPostalCode? string - Postal code for the billing address for this order. Maximum size is 20 characters.
- BillingCountry? string - Country for the billing address for this order. Maximum size is 80 characters.
- BillingLatitude? decimal - Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- BillingLongitude? decimal - Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places.
- BillingGeocodeAccuracy? string - Accuracy level of the geocode of the address.
- BillingAddress? record {} - Compound billing address field
- ShippingStreet? string - Street address of the shipping address. Maximum of 255 characters.
- ShippingCity? string - City of the shipping address. Maximum size is 40 characters.
- ShippingState? string - State of the shipping address. Maximum size is 80 characters.
- ShippingPostalCode? string - Postal code of the shipping address. Maximum size is 20 characters.
- ShippingCountry? string - Country of the shipping address. Maximum size is 80 characters.
- ShippingLatitude? decimal - Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places.
- ShippingLongitude? decimal - Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places.
- ShippingGeocodeAccuracy? string - Accuracy level of the geocode of the shipping address.
- ShippingAddress? record {} - Shipping address for the order.
- Name? string - Name for this order.
- PoDate? string - Date of the purchase order.
- PoNumber? string - Number identifying the purchase order. Maximum is 80.
- OrderReferenceNumber? string - Order reference number assigned to this order. Maximum size is 80 characters.
- BillToContactId? string - ID of the contact that the order is billed to.
- ShipToContactId? string - ID of the contact that the order is shipped to.
- ActivatedDate? string - Date and time when the order was activated.
- ActivatedById? string - ID of the User who activated this order.
- StatusCode? string - The status category for the order. An order can be either Draft or Activated. Label is Status Category.
- OrderNumber? string - Order number assigned to this order (not the unique, system-generated ID assigned during creation). Maximum size is 30 characters.
- TotalAmount? decimal - The total amount for the order products associated with this order.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it.
- LastReferencedDate? string - The timestamp when the current user last accessed this record, a record related to this record, or a list view.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrderStatusSObject
Represents the status of the order entity.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - Master label for this order status value. This display value is the internal label that doesn’t get translated.
- ApiName? string - Uniquely identifies a picklist value so it can be retrieved without using an id or primary label.
- SortOrder? int - Number used to sort this value in the order status picklist. These numbers aren’t guaranteed to be sequential, as some previous contract status values might have been deleted.
- IsDefault? boolean - Indicates whether this is the default order status value (true) or not (false) in the picklist.
- StatusCode? string - Status of the order.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrganizationSObject
Represents key configuration information for an organization.
Fields
- Id? string - Unique identifier for the record
- Name? string - The name of the organization.
- Division? string - The name of the division for this organization. This field is not related to the Division object.
- Street? string - Street address for the organization. Limit: 255 characters.
- City? string - Name of the city for the organization's address.
- State? string - State of the address of the organization. Limit: 80 characters.
- PostalCode? string - Postal code for the address of the organization. Limit: 20 characters.
- Country? string - Name of the country for the organization's address. Limit: 80 characters.
- Latitude? decimal - Used with Longitude to specify the precise geolocation of an address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see .
- Longitude? decimal - Used with Latitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see .
- GeocodeAccuracy? string - Accuracy level of the geocode for the address
- Address? record {} - Compound address field
- Phone? string - Phone number for the organization.
- Fax? string - Fax number. Limit: 40 characters.
- PrimaryContact? string - Name of the primary contact for the organization. Limit: 80 characters.
- DefaultLocaleSidKey? string - Default locale SID key.
- TimeZoneSidKey? string - Identifies the default time zone of the organization.
- LanguageLocaleKey? string - The same as Language, the two-to-five character code which represents the language and locale ISO code. This controls the language for labels displayed in an application.
- ReceivesInfoEmails? boolean - Indicates whether the organization receives informational email from Salesforce (true) or not (false).
- ReceivesAdminInfoEmails? boolean - Indicates whether the organization receives administrator emails (true) or not (false).
- PreferencesRequireOpportunityProducts? boolean - Indicates whether opportunities require products (true) or not (false).
- PreferencesEmailSenderIdCompliance? boolean - Preferences email sender ID compliance
- PreferencesTransactionSecurityPolicy? boolean - Indicates whether the Transaction Security feature has been enabled. This field is available in API version 35.0 or later.As of API version 50.0, this field is removed.
- PreferencesConsentManagementEnabled? boolean - Preferences consent management enabled
- PreferencesAutoSelectIndividualOnMerge? boolean - Preferences auto select individual on merge
- PreferencesLightningLoginEnabled? boolean - Preferences lightning login enabled
- PreferencesOnlyLLPermUserAllowed? boolean - Preferences only ll perm user allowed
- FiscalYearStartMonth? int - Number that corresponds to the month that this organization's fiscal year starts.
- UsesStartDateAsFiscalYearName? boolean - Indicates whether the calendar year when the fiscal year begins is referred to as the year of the company's fiscal year (true) or not (false). For example, if the fiscal year begins in February 2006, a true value means the fiscal year is FY2006, and a false value means the fiscal year is FY2007.
- DefaultAccountAccess? string - In API version 10.0 and later, represents the default access level for accounts, contracts, and assets. The possible values are: None Read Edit ControlledByLeadOrContact ControlledByCampaign In versions before 10.0, DefaultAccountAndContactAccess represented this value.
- DefaultContactAccess? string - Default access level for contacts. The possible values are: None Read Edit ControlledByParent In versions before 10.0, DefaultAccountAndContactAccess represented this value.When DefaultContactAccess is set to “Controlled by Parent,” you can’t update the ContactAccessLevel field.
- DefaultOpportunityAccess? string - Default access level for opportunities. The possible values are: None Read Edit ControlledByLeadOrContact ControlledByCampaign
- DefaultLeadAccess? string - Default access level for leads. The possible values are: NoneRead Edit ReadEditTransfer
- DefaultCaseAccess? string - Default access level for cases. The possible values are: None Read Edit ReadEditTransfer
- DefaultCalendarAccess? string - Default access level for calendars. The possible values are listed, followed by the user interface labels in parentheses: HideDetails (Hide Details) HideDetailsInsert (Hide Details and Add Events) ShowDetails (Show Details) ShowDetailsInsert (Show Details and Add Events) AllowEdits (Full Access)
- DefaultPricebookAccess? string - Default access level for price books. The possible values are listed, followed by the user interface labels in parentheses: None (No access) Read (Read only) ReadSelect (Use)
- DefaultCampaignAccess? string - Default access level for campaigns. The possible values are: None Read Edit All
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ComplianceBccEmail? string - Email address for compliance blind carbon copies. Limit: 80 characters.
- UiSkin? string - The user interface theme selected for the organization.
- SignupCountryIsoCode? string - The ISO country code specified by the user for a sign-up request.
- TrialExpirationDate? string - The date that this organization's trial license expires.
- NumKnowledgeService? int - Num knowledge service
- OrganizationType? string - Edition of the organization, for example Enterprise Edition or Unlimited Edition.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- InstanceName? string - Read-only. The name of the instance. Available in API version 31.0 or later.
- IsSandbox? boolean - Read-only. Indicates whether the current organization is a sandbox (true) or production (false) instance. Available in API version 31.0 or later.
- WebToCaseDefaultOrigin? string - The default value for the Case Origin field on cases submitted via Web-to-Case. Limit: 40 characters.
- MonthlyPageViewsUsed? int - The number of page views used in the current calendar month for the sites in your organization. To access this field, Salesforce Sites must be enabled for your organization. This field is generally available in API versions 18.0 and later.
- MonthlyPageViewsEntitlement? int - The number of page views allowed for the current calendar month for the sites in your organization. To access this field, Salesforce Sites must be enabled for your organization. This field is generally available in API versions 18.0 and later.
- IsReadOnly? boolean - Indicates whether the record is read-only (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgDeleteRequestShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgDeleteRequestSObject
Represents a request to delete a developer edition (DE) org.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the user who initiated the org delete request.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - The auto-generated ID of this OrgDeleteRequest object.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- RequestType? string - Specifies whether you want to deactivate or reactivate the org. When you deactivate an org, you have 30 days to change your mind and reactivate it. After 30 days, the org is locked, and you must contact Salesforce Customer Support to reactivate it. After 60 days, the org is permanently deleted from Salesforce servers. Valid values: Deactivate Reactivate
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgEmailAddressSecuritySObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- OrgWideEmailAddressId? string - ID of the associated org wide email address
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgLifecycleNotificationSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- LifecycleRequestType? string - Type of the lifecycle request
- LifecycleRequestId? string - ID of the associated lifecycle request
- OrgId? string - ID of the associated org
- Status? string - Current status of the record
- StatusCode? string - Status code of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgMetricScanResultSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrgMetricScanSummaryId? string - ID of the associated org metric scan summary
- Url? string - URL of the record
- Object? string - Object
- Date? string - Date
- Type? string - Type or category of the record
- Profile? int - Profile
- User? string - User
- Quantity? int - Quantity associated with the record
- ItemStatus? string - Status of the item
- Flags? int - Flags
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgMetricScanSummarySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrgMetricId? string - ID of the associated org metric
- Status? string - Current status of the record
- ImplementationEffort? string - Implementation effort
- ErrorMessage? string - Error message associated with the record
- ItemCount? int - Number of item
- FeatureLimit? int - Feature limit
- Unit? string - Unit
- PercentUsage? decimal - Percent usage
- ScanDate? string - Date of the scan
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgMetricSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LatestOrgMetricScanSummaryId? string - ID of the associated latest org metric scan summary
- FeatureType? string - Type of the feature
- Category? string - Category of the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OrgWideEmailAddressSObject
Represents an organization-wide email address for user profiles.
Fields
- Id? string - Unique identifier for the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsVerified? boolean - Indicates whether the record is verified (true) or not (false)
- Address? string - The organization-wide email address.
- DisplayName? string - The name that is used to identify the sender of the email.
- IsAllowAllProfiles? boolean - If true, any user profile in your organization can use this object. If false, only specified user profiles can use this object when sending email. If you do not have the appropriate user profile, you can’t use this object.
- Purpose? string - Purpose
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OutgoingEmailRelationSObject
For internal use only.
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- OutgoingEmailId? string - ID of the associated outgoing email
- RelationId? string - ID of the associated relation
- RelationAddress? string - Relation address
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OutgoingEmailSObject
For internal use only.
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- ValidatedFromAddress? string - Validated from address
- ToAddress? string - To address
- CcAddress? string - Cc address
- BccAddress? string - Bcc address
- Subject? string - Subject line of the record
- TextBody? string - Text body
- HtmlBody? string - HTML body
- RelatedToId? string - ID of the related record
- WhoId? string - ID of the associated person (contact or lead)
- EmailTemplateId? string - ID of the associated email template
- InReplyTo? string - In reply to
- References? string - References
- MessageId? string - ID of the associated message
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OwnedContentDocumentSObject
Represents a file owned by a user.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- OwnerId? string - ID of the owner of the document.
- ContentDocumentId? string - ID of the document.
- Title? string - Title of the document.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- FileType? string - Type of document, determined by the file extension.
- ContentSize? int - Size of the document in bytes.
- FileExtension? string - File extension of the document. This field is available in API version 31.0 and later.
- ContentUrl? string - URL for links and Google Docs. This field is set only for links and Google Docs, and is one of the fields that determine the FileType. This field is available in API version 31.0 and later.
- ExternalDataSourceName? string - Name of the external data source in which the document is stored. This field is set only for external documents that are connected to Salesforce. This field is available in API version 32.0 and later.
- ExternalDataSourceType? string - Type of external data source in which the document is stored. This field is set only for external documents that are connected to Salesforce. This field is available in API version 35.0 and later.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: OwnerChangeOptionInfoSObject
Represents default and optional actions that can be performed when a record’s owner is changed.
Fields
- Id? string - Unique identifier for the record
- DurableId? string - Durable ID that persists across record updates
- EntityDefinitionId? string - ID of the associated entity definition
- Name? string - Name of the record
- Label? string - Display label for the record
- IsEditable? boolean - Indicates whether the record is editable (true) or not (false)
- DefaultValue? boolean - Default value
- ParentId? string - ID of the parent record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PackageLicenseSObject
Represents a license for an installed managed package.
Fields
- Id? string - Unique identifier for the record
- Status? string - The status of the license. Possible values are: Active, Expired, Free, and Trial.
- IsProvisioned? boolean - Indicates whether the record is provisioned (true) or not (false)
- AllowedLicenses? int - The number of users allowed to use the package.
- UsedLicenses? int - The number of users who have a license to the package.
- IsAvailableForIntegrations? boolean - Indicates whether the record is available for integrations (true) or not (false)
- ExpirationDate? string - The date and time when the package license expires.
- CreatedDate? string - Date and time when the record was created
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- NamespacePrefix? string - The namespace prefix associated with the package.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: ParticipantSObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- ParticipantAppType? string - Type of the participant app
- ParticipantRole? string - Participant role
- ParticipantSubject? string - Participant subject
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartnerRoleSObject
Represents a role for an account Partner, such as consultant, supplier, and so on.
Fields
- Id? string - Unique identifier for the record
- MasterLabel? string - Master label for this partner role value. This display value is the internal label that does not get translated. Limit: 255 characters.
- ApiName? string - Uniquely identifies a picklist value so it can be retrieved without using an id or master label.
- SortOrder? int - Number used to sort this value in the partner role picklist. These numbers are not guaranteed to be sequential, as some previous partner role values might have been deleted.
- ReverseRole? string - Name of the reverse role that corresponds to this partner role. For example, if the role is “subcontractor,” then the reverse role might be “general contractor.” In the user interface, assigning a partner role to an account creates a reverse partner relationship so that both accounts list the other as a partner.
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartnerSObject
Represents a partner relationship between two Account records or between an Opportunity record and an Account record.
Fields
- Id? string - Unique identifier for the record
- OpportunityId? string - Required if AccountFromId is null. ID of the opportunity in a partner relationship between an account and an opportunity. Specifying this field when creating a record creates an OpportunityPartner record. If you specify the AccountFromId field, you can’t also specify this field.
- AccountFromId? string - Required if OpportunityId is null. ID of the main account in a partner relationship between two accounts. Specifying this field when creating a Partner record creates two AccountPartner records, one for each direction of the relationship. If you specify the OpportunityId field, you can’t specify this field as well.
- AccountToId? string - Required. ID of the Partner Account related to either an opportunity or an account. You must specify this field when creating an Opportunity Partner or an Account Partner record.
- Role? string - UserRole that the account has toward the related opportunity or account, such as consultant or distributor.
- IsPrimary? boolean - Valid for Opportunity Partners only. Indicates that the account is the primary partner for the opportunity. Only one account can be marked as primary for an opportunity. If you set this field to 1 (true) upon insert of a new opportunity partner, this field is automatically set to 0 (false) for any other primary partners for that opportunity. Label is Primary.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- ReversePartnerId? string - ID of the account in a partner relationship.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartyConsentChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- OwnerId? string - ID of the user who owns the record
- Name? string - Name of the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- PartyId? string - ID of the associated party
- Action? string - Action
- PrivacyConsentStatus? string - Status of the privacy consent
- CaptureDate? string - Date of the capture
- CaptureContactPointType? string - Type of the capture contact point
- CaptureSource? string - Capture source
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- DataUsePurposeId? string - ID of the associated data use purpose
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartyConsentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartyConsentHistorySObject
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PartyConsentId? string - ID of the associated party consent
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- Field? string - Name of the field that was changed
- DataType? string - Data type of the field that was changed
- OldValue? string - Previous value of the field before the change
- NewValue? string - New value of the field after the change
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartyConsentShareSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- UserOrGroupId? string - ID of the user or group that has been given access
- AccessLevel? string - Level of access granted to the user or group
- RowCause? string - Reason that this sharing entry exists
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PartyConsentSObject
Represents consent preferences for an individual.
Fields
- Id? string - Unique identifier for the record
- OwnerId? string - The ID of the account owner associated with this customer.
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Name of the party consent record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, it’s possible that this record was referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PartyId? string - Required. Represents the record based on the Individual object you want to associate consent with.
- Action? string - The action that the Individual is consenting to.
- PrivacyConsentStatus? string - Required. Identifies whether the individual associated with this record agrees to this form of contact.
- CaptureDate? string - Required. Date when consent was captured.
- CaptureContactPointType? string - Required. Indicates how you captured consent.
- CaptureSource? string - Required. Indicates how you captured consent. For example, a website or online form.
- PartyRoleId? string - ID of the associated party role
- BusinessBrandId? string - ID of the associated business brand
- DataUsePurposeId? string - ID of the associated data use purpose
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentAuthAdjustmentSObject
Shows information about an adjustment made to an authorized transaction.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentAuthAdjustmentNumber? string - Payment auth adjustment number
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PaymentAuthorizationId? string - ID of the payment authorization on which the adjustment occurred.
- ProcessingMode? string - Defines whether the payment has been made outside of the payment platform.
- Amount? decimal - Amount of adjustment applied to the parent payment authorization.
- Status? string - Defines the state of the payment authorization reversal.
- Type? string - Defines how the customer used the reversal.
- Date? string - The date that the adjustment occurred.
- GatewayDate? string - The date and time that the reversal transaction occurred in the payment gateway.
- EffectiveDate? string - The date that the adjustment takes effect on the authorization.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- GatewayRefNumber? string - Additional data that can’t be stored in other fields on the payment record. You can use this field for transactions following the initial transaction that creates the payment record. You can use any data that isn’t normalized in financial entities. This field has a maximum length of 1000 characters and can store data as JSON or XML.
- GatewayResultCode? string - Gateway-specific result code. Must be mapped to a Salesforce-specific result code
- SfResultCode? string - Salesforce-specific result code that can map to one or more gateway result codes. We recommend configuring the payment gateway adapter layer to map gateway result codes to the appropriate Salesforce result code.
- AccountId? string - The account for the payment authorization adjustment. Inherited from the payment authorization.
- GatewayRefDetails? string - Gateway ref details
- GatewayResultCodeDescription? string - Description of the gateway’s result code. This field is useful for providing more information around why the gateway returned a certain result code.
- IpAddress? string - Fraud parameter.
- MacAddress? string - Fraud parameter.
- Phone? string - Fraud parameter.
- Email? string - Email address of the parent payment authorization owner.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentAuthorizationSObject
Represents a single payment authorization event where users can capture or reverse a payment against a reserve of funds.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentAuthorizationNumber? string - System-provided unique ID for a payment authorization record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PaymentGroupId? string - Payment groups organize all the payment transactions that have been made against a record such as an account or contract. Populated from the authorization record if there is delayed payment.
- AccountId? string - Customer account.
- Date? string - By default, the day the authorization record was created. Users can also enter a different date. Editable only when the payment authorization’s status is Draft.
- GatewayDate? string - Payment authorization approvement code from the payment gateway.
- ExpirationDate? string - Authorizations can’t be captured after their expiration dates.
- EffectiveDate? string - The date on which the authorization takes effect. Editable only when the payment authorization’s status is Draft.
- Amount? decimal - The amount authorized for the payment event.
- Status? string - Defines the state of this payment.
- ProcessingMode? string - Defines whether the payment has been made outside of the payment platform.
- PaymentMethodId? string - The customer payment method provided during this authorization.
- Comments? string - Users can enter comments to provide additional details about the authorization.
- GatewayRefDetails? string - Additional data that can’t be stored in other fields on the payment record. You can use this field for transactions following the initial transaction that creates the payment record. You can use any data that isn’t normalized in financial entities. This field has a maximum length of 1000 characters and can store data as JSON or XML.
- GatewayRefNumber? string - Unique transaction ID from the payment gateway.
- GatewayResultCode? string - Gateway-specific result code. Must be mapped to a Salesforce-specific result code.
- SfResultCode? string - Salesforce-specific result code that can map to one or more gateway result codes. We recommend configuring the payment gateway adapter layer to map gateway result codes to the appropriate Salesforce result code.
- GatewayAuthCode? string - Authorization approval code from the payment gateway.
- TotalAuthReversalAmount? decimal - The sum of all processed authorization reversals against the payment authorization.
- GatewayResultCodeDescription? string - Description of the gateway’s result code. This field is useful for providing more information around why the gateway returned a certain result code.
- Balance? decimal - Authorized amount – total processed captured amount – total processed authorization reversal amount. Balance can be positive or negative.
- TotalPaymentCaptureAmount? decimal - The sum of all authorization captures related to this payment authorization.
- IpAddress? string - Fraud parameter.
- MacAddress? string - Fraud parameter.
- Phone? string - Fraud parameter.
- Email? string - Fraud parameter.
- PaymentGatewayId? string - The Salesforce payment gateway record that created this authorization. This gateway will be used for subsequent captures.
- PaymentIntentGuid? string - Payment intent guid
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentFeedSObject
Fields
- Id? string - Unique identifier for the record
- ParentId? string - ID of the parent record
- Type? string - Type or category of the record
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- CommentCount? int - Number of comments on the feed item
- LikeCount? int - Number of likes on the feed item
- Title? string - Title of the feed item
- Body? string - Body content of the feed item
- LinkUrl? string - URL of the link associated with the feed item
- IsRichText? boolean - Indicates whether the feed item body contains rich text (true) or not (false)
- RelatedRecordId? string - ID of the related record
- InsertedById? string - ID of the user who inserted the feed item
- BestCommentId? string - ID of the best comment on the feed item
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentGatewayLogSObject
Stores information exchanged between the Salesforce payments platform and external payment gateways. Gateway logs can also record payloads from external payment entities.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentGatewayLogNumber? string - System-generated unique ID for this payment gateway log record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - Date and time when the record was last viewed
- LastReferencedDate? string - Date and time when the record was last referenced
- ReferencedEntityId? string - Foreign key with DomainSet of PaymentAuth and Payment.
- InteractionType? string - Describes the type of interaction with the gateway. This field is required for logs created in Salesforce.
- SfRefNumber? string - If an IdempotencyKey was passed in the API request, its value is stored here in text format.
- InteractionStatus? string - Describes the result of communication between the payments platform and a payment gateway.
- GatewayAuthCode? string - Authorization approval code from the gateway.
- GatewayRefNumber? string - Unique transaction ID created by the payment gateway.
- SfResultCode? string - Salesforce-specific result code that can map to one or more gateway result codes. We recommend configuring the payment gateway adapter layer to map gateway result codes to the appropriate Salesforce result code.
- GatewayResultCode? string - Gateway-specific result code. Must be mapped to a Salesforce-specific result code.
- GatewayResultCodeDescription? string - Description of the gateway’s result code. This field is useful for providing more information around why the gateway returned a certain result code.
- GatewayDate? string - The date and time that of the gateway communication that lead to the creation of this gateway log.
- GatewayMessage? string - Information or error messages sent from the gateway.
- GatewayAvsCode? string - Code sent by gateways that use an address verification system.
- PaymentGatewayId? string - The Payments Platform payment gateway record used for communication with the external payment gateway.
- IsNotification? string - For asynchronous transactions, shows whether the gateway log belongs to the notification (yes) or the initial transaction (no).
- Request? string - Raw payload. No sensitive attributes are stored.
- Response? string - Raw payload.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentGatewayProviderSObject
Setup entity for payment gateways. Defines the connection to a payment gateway Apex adapter.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - (Optional) The username of the developer who configured the payment gateway. For reference only.
- Language? string - Customer language used for the payment gateway.
- MasterLabel? string - Specifies the name of the payment gateway provider.
- NamespacePrefix? string - Namespace for the payment gateway platform.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- ApexAdapterId? string - The Apex adapter reference for your payment gateway. This field is unique within your organization.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- IdempotencySupported? string - Defines whether the Payments Platform will charge the customer/merchant’s card multiple times for the same transaction if the same request is made in rapid succession. This can occur when a user clicks a Pay button twice, or if the gateway’s server goes down after fulfilling a payment request and the client immediately tries making another payment. If this field has a value of Yes, the Payments Platform ignores identical payment requests made immediately after an original request.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentGatewaySObject
Platform entity that represents the connection to the external payment gateway.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentGatewayName? string - User-defined name for the payment gateway.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PaymentGatewayProviderId? string - Looks up to the payment gateway provider, which captures common details and configurations for payment gateways.
- MerchantCredentialId? string - Looks up to the merchant credential setup entity to reference merchant information.
- Status? string - Defines whether the Payments Platform can use this payment gateway for calls to the external payment gateway. Inactive payment gateways can’t be used.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- ExternalReference? string - Allows Order Management Services to map an Order Management gateway to a Payments Platform gateway. This field is unique within your organization.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentGroupSObject
Top-level object that groups of all the payment transactions that have been processed an order or contract. PaymentGroup is a standalone object, so it isn’t required for users to execute payment transactions (authorizations, captures, refunds, and sales).
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentGroupNumber? string - System-defined unique ID for the payment group.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- SourceObjectId? string - The order or invoice related to all the payment transactions in the payment group.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentLineInvoiceSObject
Represents a payment allocated to or unallocated from an invoice.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentLineInvoiceNumber? string - System-defined unique ID for this payment line.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- InvoiceId? string - Target invoice for this payment line.
- PaymentId? string - Parent payment for this payment line.
- Amount? decimal - Total amount applied or unapplied by this payment line.
- Type? string - Defines whether this payment line has been applied or unapplied to the target invoice.
- HasBeenUnapplied? string - Defines whether this payment line has been unapplied from the target invoice. Has a value of NA when PaymentInvoiceLine’s Type field has a value of Unapplied. Can be No or Yes if Type has a value of Applied.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- Date? string - The date and time that this payment line was created.
- AppliedDate? string - The date that this line was applied to an invoice or payment. If this field is null, it inherits the value of the payment line invoice’s Date field.
- EffectiveDate? string - Defines the date and time when the payment line application or unapplication becomes effective.
- UnappliedDate? string - The date that this payment line was unapplied from the target invoice. Populated only when the Type field equals Unapplied. Inherits the value of the Date field.
- AssociatedAccountId? string - The account for this payment line’s target invoice.
- AssociatedPaymentLineId? string - The paymentLine that was unapplied. Populated only when PaymentLineInvoice’s Type field has a value of Unapplied.
- ImpactAmount? decimal - Shows the payment’s financial impact against the customer’s accounts receivable. If PaymentLineInvoice has a Type of Applied, the ImpactAmount is the negative equivalent of the line’s Amount field. Otherwise, ImpactAmount equals Amount.
- EffectiveImpactAmount? decimal - Shows how this payment invoice line impacts a customer’s accounts receivable. This value is positive when PaymentLineInvoice’s Type field is Applied, and negative when PaymentLineInvoice’s Type is Unapplied. If there’s an unapplied line related to this record, EffectiveImpactAmount has a value of 0.
- PaymentBalance? decimal - Total balance of this line’s parent payment record following the application or unapplication of this payment line.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentMethodSObject
The method that a buyer uses to compensate the seller of a good or service. Common payment methods include cash, checks, credit or debit cards, money orders, bank transfers, and online payment services.
Fields
- Id? string - Unique identifier for the record
- ImplementorType? string - Shows the type of payment method.
- AccountId? string - The account entity linked to this payment method.
- NickName? string - User-defined nickname for this payment method.
- CompanyName? string - Company name for this payment method. Part of the payment method’s address.
- Status? string - The state of the payment method.
- Comments? string - Users can add comments to provide additional details about a record. Maximum of 1000 characters.
- IsAutoPayEnabled? boolean - Indicates whether the record is auto pay enabled (true) or not (false)
- PaymentMethodStreet? string - Part of the address for this payment method.
- PaymentMethodCity? string - Part of the address for this payment method.
- PaymentMethodState? string - Part of the address for this payment method.
- PaymentMethodPostalCode? string - Part of the address for this payment method.
- PaymentMethodCountry? string - Part of the address for this payment method.
- PaymentMethodLatitude? decimal - Part of the address for this payment method.
- PaymentMethodLongitude? decimal - Part of the address for this payment method.
- PaymentMethodGeocodeAccuracy? string - Part of the address for this payment method.
- PaymentMethodAddress? record {} - Uses address column type. First name and last name are listed as separate fields.
- PaymentMethodType? string - Type of the payment method
- PaymentMethodSubType? string - Type of the payment method sub
- PaymentMethodDetails? string - Payment method details
- CreatedById? string - ID of the user who created the record
- CreatedDate? string - Date and time when the record was created
- LastModifiedById? string - ID of the user who last modified the record
- LastModifiedDate? string - Date and time when the record was last modified
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- Name? string - Unique number assigned to the payment method. Numbers start at 1000 and are read only, but administrators can change the format.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PaymentSObject
Represents a single event where the customer creates a payment. For credit cards, this is a payment capture or payment sale, which won’t show up in the end user’s credit card statement.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- PaymentNumber? string - System-created unique ID for this payment record.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- LastViewedDate? string - The timestamp for when the current user last viewed this record. If this value is null, this record might only have been referenced (LastReferencedDate) and not viewed.
- LastReferencedDate? string - The timestamp for when the current user last viewed a record related to this record.
- PaymentGroupId? string - Payment groups organize all the payment transactions that have been made against a record such as an account or contract. Populated from the authorization record if there is delayed payment.
- AccountId? string - The account of the customer who made the payment.
- PaymentAuthorizationId? string - The authorization record for this payment. If there is a delayed capture (when the capture occurs after the authorization), all captures must be made against a previously successful authorization transaction.
- Date? string - The date when this payment record was created.
- CancellationDate? string - The date that the payment was voided.
- Amount? decimal - The amount to be debited or captured.
- Status? string - Defines the state of this payment.
- Type? string - Defines how the customer used this payment.
- ProcessingMode? string - Defines whether the payment has been made outside of the payment platform.
- GatewayRefNumber? string - Unique transaction ID created by the payment gateway.
- ClientContext? string - Contains caller context for payment APIs. Useful for re-establishing context during an asynchronous payment transaction.
- GatewayResultCode? string - Gateway-specific result code that must map to a Salesforce-specific result code. One Salesforce result code can map to multiple gateway result codes.
- SfResultCode? string - Salesforce-specific result code that can map to one or more gateway result codes. We recommend configuring the payment gateway adapter layer to map gateway result codes to the appropriate Salesforce result code.
- GatewayDate? string - The gateway provides this date for reference following a successful gateway communication.
- CancellationGatewayRefNumber? string - System-provided unique transaction ID from the payment gateway.
- CancellationGatewayResultCode? string - Gateway-specific result code. Must be mapped to a Salesforce-specific result code.
- CancellationSfResultCode? string - A Salesforce result code that can be mapped to one or more gateway result codes. We recommend that the payment gateway adapter layer maps gateway-specific codes to the Salesforce result code.
- CancellationGatewayDate? string - The gateway provides this date following a successful cancellation request.
- Comments? string - Users can provide additional details about the payment record. Supports a maximum of 1000 characters.
- ImpactAmount? decimal - Shows the payment’s financial impact against the customer’s accounts receivable. If the payment is valid, this value is the negative of the payment amount. If the payment is voided, this value is 0.
- EffectiveDate? string - The date that this payment takes effect.
- CancellationEffectiveDate? string - The date when the cancellation of this payment takes effect.
- GatewayResultCodeDescription? string - Description of the gateway’s result code.
- GatewayRefDetails? string - Additional data that can’t be stored in other fields on the payment record. You can use this field for transactions following the initial transaction that creates the payment record. You can use any data that isn’t normalized in financial entities. This field has a maximum length of 1000 characters and can store data as JSON or XML.
- IpAddress? string - The IP address of the user who initiated the payment.
- MacAddress? string - The MAC address of the user who initiated the payment.
- Phone? string - Phone number of the customer who initiated the payment.
- Email? string - Email address of the user who initiated the payment.
- PaymentGatewayId? string - ID of the payment gateway that processed the payment. Populated from the authorization record if there is delayed payment.
- PaymentMethodId? string - The payment method that the customer used to provide this payment information.
- TotalApplied? decimal - The total amount of this payment’s balance that has been applied against an invoice.
- TotalUnapplied? decimal - The total amount of this payment that was previously applied and then unapplied.
- NetApplied? decimal - Total payment amount of that has been applied, including adjustments.
- Balance? decimal - The total amount – the net applied amount.
- TotalRefundApplied? decimal - The total amount of a refund that has been applied against this payment.
- TotalRefundUnapplied? decimal - The total amount of a previously applied refund that has since been unapplied from this payment.
- NetRefundApplied? decimal - Total refund amount that has been applied to the payment, including adjustments.
- PaymentIntentGuid? string - Payment intent guid
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PendingOrderSummaryChangeEventSObject
Fields
- Id? string - Unique identifier for the record
- ReplayId? string - ID used to replay the event from a specific point
- ChangeEventHeader? record {} - Header containing information about the change event
- ExternalId? string - External identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- OrderNumber? string - Number of the order
- AccountId? string - ID of the associated account
- BillToContactId? string - ID of the associated bill to contact
- SalesStoreId? string - ID of the associated sales store
- ShopperName? string - Name of the shopper
- BillingEmailAddress? string - Billing email address
- BillingPhoneNumber? string - Billing phone number
- OrderedDate? string - Date of the ordered
- GrandTotalAmount? decimal - Grand total amount for the record
- Description? string - Description of the record
- Payload? string - Payload
- ExternalReferenceIdentifier? string - External reference identifier
- PayloadType? string - Type of the payload
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PendingOrderSummarySObject
Fields
- Id? string - Unique identifier for the record
- ExternalId? string - External identifier for the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- OrderNumber? string - Number of the order
- AccountId? string - ID of the associated account
- BillToContactId? string - ID of the associated bill to contact
- SalesStoreId? string - ID of the associated sales store
- ShopperName? string - Name of the shopper
- BillingEmailAddress? string - Billing email address
- BillingPhoneNumber? string - Billing phone number
- OrderedDate? string - Date of the ordered
- GrandTotalAmount? decimal - Grand total amount for the record
- Description? string - Description of the record
- Payload? string - Payload
- ExternalReferenceIdentifier? string - External reference identifier
- PayloadType? string - Type of the payload
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PendingOrdSumProcEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- EventUuid? string - Universally unique identifier for the event
- ExternalReferenceIdentifier? string - External reference identifier
- IsSuccess? boolean - Indicates whether the record is success (true) or not (false)
- ErrorCode? string - Error code associated with the record
- ErrorMessage? string - Error message associated with the record
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PeriodSObject
Represents a fiscal period defined in FiscalYearSettings.
Fields
- Id? string - Unique identifier for the record
- FiscalYearSettingsId? string - The parent record for this period.
- Type? string - Indicates whether the period is of type Month, Quarter, Week, or Year. Label is the field value.
- StartDate? string - The first date of the fiscal period.
- EndDate? string - The last date of the fiscal period.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- IsForecastPeriod? boolean - Indicates whether the period is associated with Collaborative Forecasts (true) or not (false).
- QuarterLabel? string - If the quarters in your fiscal year use custom names, then this field contains the appropriate name for rows of type Quarter.
- PeriodLabel? string - If the months in your fiscal year use custom names, then this field contains the appropriate name for rows of type Month.
- Number? int - If the labeling scheme of your fiscal year's quarters or months is numbered, this field indicates the relative number of the row.
- FullyQualifiedLabel? string - Represents the period’s complete name in the UI. For example, “September FY 2016”.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetAssignmentSObject
Represents the association between a User and a PermissionSet.
Fields
- Id? string - Unique identifier for the record
- PermissionSetId? string - ID of the PermissionSet to assign to the user specified in AssigneeId.
- PermissionSetGroupId? string - If associated with a permission set group, this is the ID of that group. This field is available in API version 45.0 and later as part of a pilot. Refer to PermissionSetGroup for more information.
- AssigneeId? string - ID of the User to assign the permission set specified in PermissionSetId.
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- ExpirationDate? string - Date of the expiration
- IsActive? boolean - Indicates whether the record is active (true) or not (false)
- IsRevoked? boolean - Indicates whether the record is revoked (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetEventSObject
Fields
- ReplayId? string - ID used to replay the event from a specific point
- CreatedDate? string - Date and time when the record was created
- EventUuid? string - Universally unique identifier for the event
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- LoginHistoryId? string - ID of the login history record associated with the event
- EventSource? string - Source of the event
- Operation? string - Operation associated with the record
- ParentIdList? string - Parent ID list
- ParentNameList? string - Parent name list
- PermissionType? string - Type of the permission
- PermissionList? string - Permission list
- PermissionExpiration? string - Permission expiration
- PermissionExpirationList? string - Permission expiration list
- HasExternalUsers? boolean - Indicates whether the record has external users (true) or not (false)
- ImpactedUserIds? string - Impacted user ids
- UserCount? string - Number of user
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetEventStoreSObject
Fields
- Id? string - Unique identifier for the record
- CreatedDate? string - Date and time when the record was created
- EventIdentifier? string - Unique identifier for the event occurrence
- UserId? string - ID of the user associated with the record
- Username? string - Username of the user associated with the record
- EventDate? string - Date and time when the event occurred
- RelatedEventIdentifier? string - Identifier of a related event
- PolicyId? string - ID of the policy that was evaluated for the event
- PolicyOutcome? string - Outcome of the policy evaluation
- EvaluationTime? decimal - Time taken to evaluate the event
- SessionKey? string - Key that identifies the user's session
- LoginKey? string - Key that identifies the user's login session
- SessionLevel? string - Security level of the session
- SourceIp? string - IP address of the source that triggered the event
- LoginHistoryId? string - ID of the login history record associated with the event
- EventSource? string - Source of the event
- Operation? string - Operation associated with the record
- ParentIdList? string - Parent ID list
- ParentNameList? string - Parent name list
- PermissionType? string - Type of the permission
- PermissionList? string - Permission list
- HasExternalUsers? boolean - Indicates whether the record has external users (true) or not (false)
- ImpactedUserIds? string - Impacted user ids
- UserCount? string - Number of user
- PermissionExpiration? string - Permission expiration
- PermissionExpirationList? string - Permission expiration list
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetGroupComponentSObject
A junction object that relates the PermissionSetGroup and PermissionSet objects via their respective IDs; enables permission set group recalculation to determine the aggregated permissions for the group.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PermissionSetGroupId? string - The unique permission set group ID.
- PermissionSetId? string - The unique permission set ID of a permission set in a permission set group.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetGroupSObject
Represents a group of permission sets and the permissions within them. Use permission set groups to organize permissions based on job functions or tasks. Then, you can package the groups as needed.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The permission set group name used in the API.
- Language? string - The Permission Set Group language.
- MasterLabel? string - The permission set group label for the aggregated permissions.
- NamespacePrefix? string - Namespace prefix of the package that contains the record
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- Description? string - The Permission Set Group description.
- Status? string - Indicates permission set group recalculation status. Updated. The group is current. Outdated. The group requires recalculation. Updating. The group is in recalculation mode. Failed. The group recalculation failed.
- HasActivationRequired? boolean - Indicates whether the record has activation required (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetLicenseAssignSObject
Represents the association between a User and a PermissionSetLicense.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PermissionSetLicenseId? string - The ID of the permission set license the user is assigned to.
- AssigneeId? string - ID of the User to assign the permission set license specified in PermissionSetLicenseId.
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetLicenseSObject
Represents a license that’s used to enable one or more users to receive a specified permission without changing their profile or reassigning profiles. You can use permission set licenses to grant access, but not to deny access.
Fields
- Id? string - Unique identifier for the record
- IsDeleted? boolean - Indicates whether the record has been moved to the Recycle Bin (true) or not (false)
- DeveloperName? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. When creating large sets of data, always specify a unique DeveloperName for each record. If no DeveloperName is specified, performance may slow while Salesforce generates one for each record.
- Language? string - The language of the permission set license.
- MasterLabel? string - The label of the permission set license. Label is Permission Set License Label.
- CreatedDate? string - Date and time when the record was created
- CreatedById? string - ID of the user who created the record
- LastModifiedDate? string - Date and time when the record was last modified
- LastModifiedById? string - ID of the user who last modified the record
- SystemModstamp? string - Date and time when the record was last modified by a user or automated process
- PermissionSetLicenseKey? string - A string that uniquely identifies a particular permission set license.
- TotalLicenses? int - The total number of this permission set license that are available to your organization.
- Status? string - The status of a permission set license. If Active, the permission set license is available. If Disabled, the permission set license has expired.
- ExpirationDate? string - The date at which the permission set license expires.
- MaximumPermissionsEmailSingle? boolean - Maximum permissions email single
- MaximumPermissionsEmailMass? boolean - Maximum permissions email mass
- MaximumPermissionsEditTask? boolean - Maximum permissions edit task
- MaximumPermissionsEditEvent? boolean - Maximum permissions edit event
- MaximumPermissionsExportReport? boolean - Maximum permissions export report
- MaximumPermissionsImportPersonal? boolean - Maximum permissions import personal
- MaximumPermissionsDataExport? boolean - Maximum permissions data export
- MaximumPermissionsManageUsers? boolean - Maximum permissions manage users
- MaximumPermissionsEditPublicFilters? boolean - Maximum permissions edit public filters
- MaximumPermissionsEditPublicTemplates? boolean - Maximum permissions edit public templates
- MaximumPermissionsModifyAllData? boolean - Maximum permissions modify all data
- MaximumPermissionsEditBillingInfo? boolean - Maximum permissions edit billing info
- MaximumPermissionsManageCases? boolean - Maximum permissions manage cases
- MaximumPermissionsMassInlineEdit? boolean - Maximum permissions mass inline edit
- MaximumPermissionsEditKnowledge? boolean - Maximum permissions edit knowledge
- MaximumPermissionsManageKnowledge? boolean - Maximum permissions manage knowledge
- MaximumPermissionsManageSolutions? boolean - Maximum permissions manage solutions
- MaximumPermissionsCustomizeApplication? boolean - Maximum permissions customize application
- MaximumPermissionsEditReadonlyFields? boolean - Maximum permissions edit readonly fields
- MaximumPermissionsRunReports? boolean - Maximum permissions run reports
- MaximumPermissionsViewSetup? boolean - Maximum permissions view setup
- MaximumPermissionsTransferAnyEntity? boolean - Maximum permissions transfer any entity
- MaximumPermissionsNewReportBuilder? boolean - Maximum permissions new report builder
- MaximumPermissionsActivateContract? boolean - Maximum permissions activate contract
- MaximumPermissionsActivateOrder? boolean - Maximum permissions activate order
- MaximumPermissionsImportLeads? boolean - Maximum permissions import leads
- MaximumPermissionsManageLeads? boolean - Maximum permissions manage leads
- MaximumPermissionsTransferAnyLead? boolean - Maximum permissions transfer any lead
- MaximumPermissionsViewAllData? boolean - Maximum permissions view all data
- MaximumPermissionsEditPublicDocuments? boolean - Maximum permissions edit public documents
- MaximumPermissionsViewEncryptedData? boolean - Maximum permissions view encrypted data
- MaximumPermissionsEditBrandTemplates? boolean - Maximum permissions edit brand templates
- MaximumPermissionsEditHtmlTemplates? boolean - Maximum permissions edit HTML templates
- MaximumPermissionsChatterInternalUser? boolean - Maximum permissions chatter internal user
- MaximumPermissionsManageEncryptionKeys? boolean - Maximum permissions manage encryption keys
- MaximumPermissionsDeleteActivatedContract? boolean - Maximum permissions delete activated contract
- MaximumPermissionsChatterInviteExternalUsers? boolean - Maximum permissions chatter invite external users
- MaximumPermissionsSendSitRequests? boolean - Maximum permissions send sit requests
- MaximumPermissionsApiUserOnly? boolean - Maximum permissions API user only
- MaximumPermissionsManageRemoteAccess? boolean - Maximum permissions manage remote access
- MaximumPermissionsCanUseNewDashboardBuilder? boolean - Maximum permissions can use new dashboard builder
- MaximumPermissionsManageCategories? boolean - Maximum permissions manage categories
- MaximumPermissionsConvertLeads? boolean - Maximum permissions convert leads
- MaximumPermissionsPasswordNeverExpires? boolean - Maximum permissions password never expires
- MaximumPermissionsUseTeamReassignWizards? boolean - Maximum permissions use team reassign wizards
- MaximumPermissionsEditActivatedOrders? boolean - Maximum permissions edit activated orders
- MaximumPermissionsInstallPackaging? boolean - Maximum permissions install packaging
- MaximumPermissionsPublishPackaging? boolean - Maximum permissions publish packaging
- MaximumPermissionsChatterOwnGroups? boolean - Maximum permissions chatter own groups
- MaximumPermissionsEditOppLineItemUnitPrice? boolean - Maximum permissions edit opp line item unit price
- MaximumPermissionsCreatePackaging? boolean - Maximum permissions create packaging
- MaximumPermissionsBulkApiHardDelete? boolean - Maximum permissions bulk API hard delete
- MaximumPermissionsSolutionImport? boolean - Maximum permissions solution import
- MaximumPermissionsManageCallCenters? boolean - Maximum permissions manage call centers
- MaximumPermissionsManageSynonyms? boolean - Maximum permissions manage synonyms
- MaximumPermissionsViewContent? boolean - Maximum permissions view content
- MaximumPermissionsManageEmailClientConfig? boolean - Maximum permissions manage email client config
- MaximumPermissionsEnableNotifications? boolean - Maximum permissions enable notifications
- MaximumPermissionsManageDataIntegrations? boolean - Maximum permissions manage data integrations
- MaximumPermissionsDistributeFromPersWksp? boolean - Maximum permissions distribute from pers wksp
- MaximumPermissionsViewDataCategories? boolean - Maximum permissions view data categories
- MaximumPermissionsManageDataCategories? boolean - Maximum permissions manage data categories
- MaximumPermissionsAuthorApex? boolean - Maximum permissions author apex
- MaximumPermissionsManageMobile? boolean - Maximum permissions manage mobile
- MaximumPermissionsApiEnabled? boolean - Maximum permissions API enabled
- MaximumPermissionsManageCustomReportTypes? boolean - Maximum permissions manage custom report types
- MaximumPermissionsEditCaseComments? boolean - Maximum permissions edit case comments
- MaximumPermissionsTransferAnyCase? boolean - Maximum permissions transfer any case
- MaximumPermissionsContentAdministrator? boolean - Maximum permissions content administrator
- MaximumPermissionsCreateWorkspaces? boolean - Maximum permissions create workspaces
- MaximumPermissionsManageContentPermissions? boolean - Maximum permissions manage content permissions
- MaximumPermissionsManageContentProperties? boolean - Maximum permissions manage content properties
- MaximumPermissionsManageContentTypes? boolean - Maximum permissions manage content types
- MaximumPermissionsManageExchangeConfig? boolean - Maximum permissions manage exchange config
- MaximumPermissionsManageAnalyticSnapshots? boolean - Maximum permissions manage analytic snapshots
- MaximumPermissionsScheduleReports? boolean - Maximum permissions schedule reports
- MaximumPermissionsManageBusinessHourHolidays? boolean - Maximum permissions manage business hour holidays
- MaximumPermissionsManageEntitlements? boolean - Maximum permissions manage entitlements
- MaximumPermissionsManageDynamicDashboards? boolean - Maximum permissions manage dynamic dashboards
- MaximumPermissionsCustomSidebarOnAllPages? boolean - Maximum permissions custom sidebar on all pages
- MaximumPermissionsManageInteraction? boolean - Maximum permissions manage interaction
- MaximumPermissionsViewMyTeamsDashboards? boolean - Maximum permissions view my teams dashboards
- MaximumPermissionsModerateChatter? boolean - Maximum permissions moderate chatter
- MaximumPermissionsResetPasswords? boolean - Maximum permissions reset passwords
- MaximumPermissionsFlowUFLRequired? boolean - Maximum permissions flow ufl required
- MaximumPermissionsCanInsertFeedSystemFields? boolean - Maximum permissions can insert feed system fields
- MaximumPermissionsActivitiesAccess? boolean - Maximum permissions activities access
- MaximumPermissionsManageKnowledgeImportExport? boolean - Maximum permissions manage knowledge import export
- MaximumPermissionsEmailTemplateManagement? boolean - Maximum permissions email template management
- MaximumPermissionsEmailAdministration? boolean - Maximum permissions email administration
- MaximumPermissionsManageChatterMessages? boolean - Maximum permissions manage chatter messages
- MaximumPermissionsAllowEmailIC? boolean - Maximum permissions allow email ic
- MaximumPermissionsChatterFileLink? boolean - Maximum permissions chatter file link
- MaximumPermissionsForceTwoFactor? boolean - Maximum permissions force two factor
- MaximumPermissionsViewEventLogFiles? boolean - Maximum permissions view event log files
- MaximumPermissionsManageNetworks? boolean - Maximum permissions manage networks
- MaximumPermissionsManageAuthProviders? boolean - Maximum permissions manage auth providers
- MaximumPermissionsRunFlow? boolean - Maximum permissions run flow
- MaximumPermissionsCreateCustomizeDashboards? boolean - Maximum permissions create customize dashboards
- MaximumPermissionsCreateDashboardFolders? boolean - Maximum permissions create dashboard folders
- MaximumPermissionsViewPublicDashboards? boolean - Maximum permissions view public dashboards
- MaximumPermissionsManageDashbdsInPubFolders? boolean - Maximum permissions manage dashbds in pub folders
- MaximumPermissionsCreateCustomizeReports? boolean - Maximum permissions create customize reports
- MaximumPermissionsCreateReportFolders? boolean - Maximum permissions create report folders
- MaximumPermissionsViewPublicReports? boolean - Maximum permissions view public reports
- MaximumPermissionsManageReportsInPubFolders? boolean - Maximum permissions manage reports in pub folders
- MaximumPermissionsEditMyDashboards? boolean - Maximum permissions edit my dashboards
- MaximumPermissionsEditMyReports? boolean - Maximum permissions edit my reports
- MaximumPermissionsViewAllUsers? boolean - Maximum permissions view all users
- MaximumPermissionsAllowUniversalSearch? boolean - Maximum permissions allow universal search
- MaximumPermissionsConnectOrgToEnvironmentHub? boolean - Maximum permissions connect org to environment hub
- MaximumPermissionsWorkCalibrationUser? boolean - Maximum permissions work calibration user
- MaximumPermissionsCreateCustomizeFilters? boolean - Maximum permissions create customize filters
- MaximumPermissionsWorkDotComUserPerm? boolean - Maximum permissions work dot com user perm
- MaximumPermissionsContentHubUser? boolean - Maximum permissions content hub user
- MaximumPermissionsGovernNetworks? boolean - Maximum permissions govern networks
- MaximumPermissionsSalesConsole? boolean - Maximum permissions sales console
- MaximumPermissionsTwoFactorApi? boolean - Maximum permissions two factor API
- MaximumPermissionsDeleteTopics? boolean - Maximum permissions delete topics
- MaximumPermissionsEditTopics? boolean - Maximum permissions edit topics
- MaximumPermissionsCreateTopics? boolean - Maximum permissions create topics
- MaximumPermissionsAssignTopics? boolean - Maximum permissions assign topics
- MaximumPermissionsIdentityEnabled? boolean - Maximum permissions identity enabled
- MaximumPermissionsIdentityConnect? boolean - Maximum permissions identity connect
- MaximumPermissionsAllowViewKnowledge? boolean - Maximum permissions allow view knowledge
- MaximumPermissionsContentWorkspaces? boolean - Maximum permissions content workspaces
- MaximumPermissionsManageSearchPromotionRules? boolean - Maximum permissions manage search promotion rules
- MaximumPermissionsCustomMobileAppsAccess? boolean - Maximum permissions custom mobile apps access
- MaximumPermissionsViewHelpLink? boolean - Maximum permissions view help link
- MaximumPermissionsManageProfilesPermissionsets? boolean - Maximum permissions manage profiles permissionsets
- MaximumPermissionsAssignPermissionSets? boolean - Maximum permissions assign permission sets
- MaximumPermissionsManageRoles? boolean - Maximum permissions manage roles
- MaximumPermissionsManageIpAddresses? boolean - Maximum permissions manage IP addresses
- MaximumPermissionsManageSharing? boolean - Maximum permissions manage sharing
- MaximumPermissionsManageInternalUsers? boolean - Maximum permissions manage internal users
- MaximumPermissionsManagePasswordPolicies? boolean - Maximum permissions manage password policies
- MaximumPermissionsManageLoginAccessPolicies? boolean - Maximum permissions manage login access policies
- MaximumPermissionsViewPlatformEvents? boolean - Maximum permissions view platform events
- MaximumPermissionsManageCustomPermissions? boolean - Maximum permissions manage custom permissions
- MaximumPermissionsCanVerifyComment? boolean - Maximum permissions can verify comment
- MaximumPermissionsManageUnlistedGroups? boolean - Maximum permissions manage unlisted groups
- MaximumPermissionsStdAutomaticActivityCapture? boolean - Maximum permissions std automatic activity capture
- MaximumPermissionsInsightsAppDashboardEditor? boolean - Maximum permissions insights app dashboard editor
- MaximumPermissionsManageTwoFactor? boolean - Maximum permissions manage two factor
- MaximumPermissionsInsightsAppUser? boolean - Maximum permissions insights app user
- MaximumPermissionsInsightsAppAdmin? boolean - Maximum permissions insights app admin
- MaximumPermissionsInsightsAppEltEditor? boolean - Maximum permissions insights app elt editor
- MaximumPermissionsInsightsAppUploadUser? boolean - Maximum permissions insights app upload user
- MaximumPermissionsInsightsCreateApplication? boolean - Maximum permissions insights create application
- MaximumPermissionsLightningExperienceUser? boolean - Maximum permissions lightning experience user
- MaximumPermissionsViewDataLeakageEvents? boolean - Maximum permissions view data leakage events
- MaximumPermissionsConfigCustomRecs? boolean - Maximum permissions config custom recs
- MaximumPermissionsSubmitMacrosAllowed? boolean - Maximum permissions submit macros allowed
- MaximumPermissionsBulkMacrosAllowed? boolean - Maximum permissions bulk macros allowed
- MaximumPermissionsShareInternalArticles? boolean - Maximum permissions share internal articles
- MaximumPermissionsManageSessionPermissionSets? boolean - Maximum permissions manage session permission sets
- MaximumPermissionsManageTemplatedApp? boolean - Maximum permissions manage templated app
- MaximumPermissionsUseTemplatedApp? boolean - Maximum permissions use templated app
- MaximumPermissionsSendAnnouncementEmails? boolean - Maximum permissions send announcement emails
- MaximumPermissionsChatterEditOwnPost? boolean - Maximum permissions chatter edit own post
- MaximumPermissionsChatterEditOwnRecordPost? boolean - Maximum permissions chatter edit own record post
- MaximumPermissionsWaveTabularDownload? boolean - Maximum permissions wave tabular download
- MaximumPermissionsWaveCommunityUser? boolean - Maximum permissions wave community user
- MaximumPermissionsAutomaticActivityCapture? boolean - Maximum permissions automatic activity capture
- MaximumPermissionsImportCustomObjects? boolean - Maximum permissions import custom objects
- MaximumPermissionsSalesforceIQInbox? boolean - Maximum permissions salesforce iq inbox
- MaximumPermissionsDelegatedTwoFactor? boolean - Maximum permissions delegated two factor
- MaximumPermissionsChatterComposeUiCodesnippet? boolean - Maximum permissions chatter compose UI codesnippet
- MaximumPermissionsSelectFilesFromSalesforce? boolean - Maximum permissions select files from salesforce
- MaximumPermissionsModerateNetworkUsers? boolean - Maximum permissions moderate network users
- MaximumPermissionsMergeTopics? boolean - Maximum permissions merge topics
- MaximumPermissionsSubscribeToLightningReports? boolean - Maximum permissions subscribe to lightning reports
- MaximumPermissionsManagePvtRptsAndDashbds? boolean - Maximum permissions manage pvt rpts and dashbds
- MaximumPermissionsAllowLightningLogin? boolean - Maximum permissions allow lightning login
- MaximumPermissionsCampaignInfluence2? boolean - Maximum permissions campaign influence 2
- MaximumPermissionsViewDataAssessment? boolean - Maximum permissions view data assessment
- MaximumPermissionsRemoveDirectMessageMembers? boolean - Maximum permissions remove direct message members
- MaximumPermissionsCanApproveFeedPost? boolean - Maximum permissions can approve feed post
- MaximumPermissionsAddDirectMessageMembers? boolean - Maximum permissions add direct message members
- MaximumPermissionsAllowViewEditConvertedLeads? boolean - Maximum permissions allow view edit converted leads
- MaximumPermissionsShowCompanyNameAsUserBadge? boolean - When on, a user’s company name, if available, will be displayed in place of the community role.
- MaximumPermissionsAccessCMC? boolean - Maximum permissions access cmc
- MaximumPermissionsViewHealthCheck? boolean - Maximum permissions view health check
- MaximumPermissionsManageHealthCheck? boolean - Maximum permissions manage health check
- MaximumPermissionsPackaging2? boolean - Maximum permissions packaging 2
- MaximumPermissionsManageCertificates? boolean - Maximum permissions manage certificates
- MaximumPermissionsCreateReportInLightning? boolean - Maximum permissions create report in lightning
- MaximumPermissionsPreventClassicExperience? boolean - Maximum permissions prevent classic experience
- MaximumPermissionsHideReadByList? boolean - Maximum permissions hide read by list
- MaximumPermissionsListEmailSend? boolean - Maximum permissions list email send
- MaximumPermissionsFeedPinning? boolean - Maximum permissions feed pinning
- MaximumPermissionsChangeDashboardColors? boolean - Maximum permissions change dashboard colors
- MaximumPermissionsManageRecommendationStrategies? boolean - Maximum permissions manage recommendation strategies
- MaximumPermissionsManagePropositions? boolean - Maximum permissions manage propositions
- MaximumPermissionsCloseConversations? boolean - Maximum permissions close conversations
- MaximumPermissionsSubscribeReportRolesGrps? boolean - Maximum permissions subscribe report roles grps
- MaximumPermissionsSubscribeDashboardRolesGrps? boolean - Maximum permissions subscribe dashboard roles grps
- MaximumPermissionsUseWebLink? boolean - Maximum permissions use web link
- MaximumPermissionsHasUnlimitedNBAExecutions? boolean - Maximum permissions has unlimited nba executions
- MaximumPermissionsViewOnlyEmbeddedAppUser? boolean - Maximum permissions view only embedded app user
- MaximumPermissionsViewAllActivities? boolean - Maximum permissions view all activities
- MaximumPermissionsSubscribeReportToOtherUsers? boolean - Maximum permissions subscribe report to other users
- MaximumPermissionsLightningConsoleAllowedForUser? boolean - Maximum permissions lightning console allowed for user
- MaximumPermissionsSubscribeReportsRunAsUser? boolean - Maximum permissions subscribe reports run as user
- MaximumPermissionsSubscribeToLightningDashboards? boolean - Maximum permissions subscribe to lightning dashboards
- MaximumPermissionsSubscribeDashboardToOtherUsers? boolean - Maximum permissions subscribe dashboard to other users
- MaximumPermissionsCreateLtngTempInPub? boolean - Maximum permissions create ltng temp in pub
- MaximumPermissionsAppointmentBookingUserAccess? boolean - Maximum permissions appointment booking user access
- MaximumPermissionsTransactionalEmailSend? boolean - Maximum permissions transactional email send
- MaximumPermissionsViewPrivateStaticResources? boolean - Maximum permissions view private static resources
- MaximumPermissionsCreateLtngTempFolder? boolean - Maximum permissions create ltng temp folder
- MaximumPermissionsApexRestServices? boolean - Maximum permissions apex rest services
- MaximumPermissionsConfigureLiveMessage? boolean - Maximum permissions configure live message
- MaximumPermissionsLiveMessageAgent? boolean - Maximum permissions live message agent
- MaximumPermissionsEnableCommunityAppLauncher? boolean - Maximum permissions enable community app launcher
- MaximumPermissionsGiveRecognitionBadge? boolean - Maximum permissions give recognition badge
- MaximumPermissionsLightningSchedulerUserAccess? boolean - Maximum permissions lightning scheduler user access
- MaximumPermissionsSalesforceIQInternal? boolean - Maximum permissions salesforce iq internal
- MaximumPermissionsUseMySearch? boolean - Maximum permissions use my search
- MaximumPermissionsLtngPromoReserved01UserPerm? boolean - Maximum permissions ltng promo reserved 01 user perm
- MaximumPermissionsManageSubscriptions? boolean - Maximum permissions manage subscriptions
- MaximumPermissionsWaveManagePrivateAssetsUser? boolean - Maximum permissions wave manage private assets user
- MaximumPermissionsCanEditDataPrepRecipe? boolean - Maximum permissions can edit data prep recipe
- MaximumPermissionsAddAnalyticsRemoteConnections? boolean - Maximum permissions add analytics remote connections
- MaximumPermissionsManageSurveys? boolean - Maximum permissions manage surveys
- MaximumPermissionsUseAssistantDialog? boolean - Maximum permissions use assistant dialog
- MaximumPermissionsUseQuerySuggestions? boolean - Maximum permissions use query suggestions
- MaximumPermissionsRecordVisibilityAPI? boolean - Maximum permissions record visibility api
- MaximumPermissionsViewRoles? boolean - Maximum permissions view roles
- MaximumPermissionsCanManageMaps? boolean - Maximum permissions can manage maps
- MaximumPermissionsLMOutboundMessagingUserPerm? boolean - Maximum permissions lm outbound messaging user perm
- MaximumPermissionsModifyDataClassification? boolean - Maximum permissions modify data classification
- MaximumPermissionsPrivacyDataAccess? boolean - Maximum permissions privacy data access
- MaximumPermissionsQueryAllFiles? boolean - Maximum permissions query all files
- MaximumPermissionsModifyMetadata? boolean - Maximum permissions modify metadata
- MaximumPermissionsManageCMS? boolean - Maximum permissions manage cms
- MaximumPermissionsSandboxTestingInCommunityApp? boolean - Maximum permissions sandbox testing in community app
- MaximumPermissionsCanEditPrompts? boolean - Maximum permissions can edit prompts
- MaximumPermissionsViewUserPII? boolean - Maximum permissions view user pii
- MaximumPermissionsManageHubConnections? boolean - Maximum permissions manage hub connections
- MaximumPermissionsB2BMarketingAnalyticsUser? boolean - Maximum permissions b 2 b marketing analytics user
- MaximumPermissionsTraceXdsQueries? boolean - Maximum permissions trace xds queries
- MaximumPermissionsViewSecurityCommandCenter? boolean - Maximum permissions view security command center
- MaximumPermissionsManageSecurityCommandCenter? boolean - Maximum permissions manage security command center
- MaximumPermissionsViewAllCustomSettings? boolean - Maximum permissions view all custom settings
- MaximumPermissionsViewAllForeignKeyNames? boolean - Maximum permissions view all foreign key names
- MaximumPermissionsAddWaveNotificationRecipients? boolean - Maximum permissions add wave notification recipients
- MaximumPermissionsHeadlessCMSAccess? boolean - Maximum permissions headless cms access
- MaximumPermissionsUseFulfillmentAPIs? boolean - Maximum permissions use fulfillment ap is
- MaximumPermissionsLMEndMessagingSessionUserPerm? boolean - Maximum permissions lm end messaging session user perm
- MaximumPermissionsConsentApiUpdate? boolean - Maximum permissions consent API update
- MaximumPermissionsPaymentsAPIUser? boolean - Maximum permissions payments api user
- MaximumPermissionsAccessContentBuilder? boolean - Maximum permissions access content builder
- MaximumPermissionsAccountSwitcherUser? boolean - Maximum permissions account switcher user
- MaximumPermissionsViewAnomalyEvents? boolean - Maximum permissions view anomaly events
- MaximumPermissionsManageC360AConnections? boolean - Maximum permissions manage c 360 a connections
- MaximumPermissionsIsContactCenterAdmin? boolean - Maximum permissions is contact center admin
- MaximumPermissionsIsContactCenterAgent? boolean - Maximum permissions is contact center agent
- MaximumPermissionsManageReleaseUpdates? boolean - Maximum permissions manage release updates
- MaximumPermissionsViewAllProfiles? boolean - Maximum permissions view all profiles
- MaximumPermissionsSkipIdentityConfirmation? boolean - Maximum permissions skip identity confirmation
- MaximumPermissionsCanToggleCallRecordings? boolean - Maximum permissions can toggle call recordings
- MaximumPermissionsLearningManager? boolean - Maximum permissions learning manager
- MaximumPermissionsSendCustomNotifications? boolean - Maximum permissions send custom notifications
- MaximumPermissionsPackaging2Delete? boolean - Maximum permissions packaging 2 delete
- MaximumPermissionsUseOmnichannelInventoryAPIs? boolean - Maximum permissions use omnichannel inventory ap is
- MaximumPermissionsViewRestrictionAndScopingRules? boolean - Maximum permissions view restriction and scoping rules
- MaximumPermissionsFSCComprehensiveUserAccess? boolean - Maximum permissions fsc comprehensive user access
- MaximumPermissionsBotManageBots? boolean - Maximum permissions bot manage bots
- MaximumPermissionsBotManageBotsTrainingData? boolean - Maximum permissions bot manage bots training data
- MaximumPermissionsSchedulingLineAmbassador? boolean - Maximum permissions scheduling line ambassador
- MaximumPermissionsSchedulingFacilityManager? boolean - Maximum permissions scheduling facility manager
- MaximumPermissionsOmnichannelInventorySync? boolean - Maximum permissions omnichannel inventory sync
- MaximumPermissionsManageLearningReporting? boolean - Maximum permissions manage learning reporting
- MaximumPermissionsIsContactCenterSupervisor? boolean - Maximum permissions is contact center supervisor
- MaximumPermissionsIsotopeCToCUser? boolean - Maximum permissions isotope c to c user
- MaximumPermissionsCanAccessCE? boolean - Maximum permissions can access ce
- MaximumPermissionsUseAddOrderItemSummaryAPIs? boolean - Maximum permissions use add order item summary ap is
- MaximumPermissionsIsotopeAccess? boolean - Maximum permissions isotope access
- MaximumPermissionsIsotopeLEX? boolean - Maximum permissions isotope lex
- MaximumPermissionsQuipMetricsAccess? boolean - Maximum permissions quip metrics access
- MaximumPermissionsQuipUserEngagementMetrics? boolean - Maximum permissions quip user engagement metrics
- MaximumPermissionsRemoteMediaVirtualDesktop? boolean - Maximum permissions remote media virtual desktop
- MaximumPermissionsTransactionSecurityExempt? boolean - Maximum permissions transaction security exempt
- MaximumPermissionsManageStores? boolean - Maximum permissions manage stores
- MaximumPermissionsManageExternalConnections? boolean - Maximum permissions manage external connections
- MaximumPermissionsUseReturnOrder? boolean - Maximum permissions use return order
- MaximumPermissionsUseReturnOrderAPIs? boolean - Maximum permissions use return order ap is
- MaximumPermissionsUseSubscriptionEmails? boolean - Maximum permissions use subscription emails
- MaximumPermissionsUseOrderEntry? boolean - Maximum permissions use order entry
- MaximumPermissionsUseRepricing? boolean - Maximum permissions use repricing
- MaximumPermissionsAIViewInsightObjects? boolean - Maximum permissions ai view insight objects
- MaximumPermissionsAICreateInsightObjects? boolean - Maximum permissions ai create insight objects
- MaximumPermissionsViewMLModels? boolean - Maximum permissions view ml models
- MaximumPermissionsLifecycleManagementAPIUser? boolean - Maximum permissions lifecycle management api user
- MaximumPermissionsNativeWebviewScrolling? boolean - Maximum permissions native webview scrolling
- MaximumPermissionsViewDeveloperName? boolean - Name of the maximum permissions view developer
- MaximumPermissionsBypassMFAForUiLogins? boolean - Maximum permissions bypass mfa for UI logins
- MaximumPermissionsClientSecretRotation? boolean - Maximum permissions client secret rotation
- MaximumPermissionsAccessToServiceProcess? boolean - Maximum permissions access to service process
- MaximumPermissionsManageOrchInstsAndWorkItems? boolean - Maximum permissions manage orch insts and work items
- MaximumPermissionsCMSECEAuthoringAccess? boolean - Maximum permissions cmsece authoring access
- MaximumPermissionsManageDataspaceScope? boolean - Maximum permissions manage dataspace scope
- MaximumPermissionsConfigureDataspaceScope? boolean - Maximum permissions configure dataspace scope
- MaximumPermissionsCdcReportingCreateReports? boolean - Maximum permissions cdc reporting create reports
- MaximumPermissionsCdcReportingViewReports? boolean - Maximum permissions cdc reporting view reports
- MaximumPermissionsCdcReportingManageFolders? boolean - Maximum permissions cdc reporting manage folders
- MaximumPermissionsOmnichannelInventoryBasic? boolean - Maximum permissions omnichannel inventory basic
- MaximumPermissionsDeleteCrMemoAndInvoice? boolean - Maximum permissions delete cr memo and invoice
- MaximumPermissionsEmbeddedMessagingAgent? boolean - Maximum permissions embedded messaging agent
- MaximumPermissionsManageNamedCredentials? boolean - Maximum permissions manage named credentials
- MaximumPermissionsCanInitiateMessagingSessions? boolean - Maximum permissions can initiate messaging sessions
- MaximumPermissionsEditRepricing? boolean - Maximum permissions edit repricing
- MaximumPermissionsManageDataMaskPolicies? boolean - Maximum permissions manage data mask policies
- MaximumPermissionsCanUpdateEmailMessage? boolean - Maximum permissions can update email message
- MaximumPermissionsDownloadPackageVersionZips? boolean - Maximum permissions download package version zips
- MaximumPermissionsReassignOrchestrationWorkItems? boolean - Maximum permissions reassign orchestration work items
- MaximumPermissionsManageOrchestrationRuns? boolean - Maximum permissions manage orchestration runs
- MaximumPermissionsDigitalLendingUser? boolean - Maximum permissions digital lending user
- MaximumPermissionsLoanOfficerUser? boolean - Maximum permissions loan officer user
- MaximumPermissionsUnderwriterUser? boolean - Maximum permissions underwriter user
- MaximumPermissionsUseOMAnalytics? boolean - Maximum permissions use om analytics
- MaximumPermissionsUseExchangesAPIs? boolean - Maximum permissions use exchanges ap is
- MaximumPermissionsEnableIPFSUpload? boolean - Maximum permissions enable ipfs upload
- MaximumPermissionsEnableBCTransactionPolling? boolean - Maximum permissions enable bc transaction polling
- MaximumPermissionsLobbyManagementUserAccess? boolean - Maximum permissions lobby management user access
- MaximumPermissionsUseRegisterGuestBuyerAPI? boolean - Maximum permissions use register guest buyer api
- MaximumPermissionsSimpleCsvDataImportUser? boolean - Maximum permissions simple CSV data import user
- MaximumPermissionsAdvancedCsvDataImportUser? boolean - Maximum permissions advanced CSV data import user
- MaximumPermissionsAccessToComplaintMgmt? boolean - Maximum permissions access to complaint mgmt
- MaximumPermissionsAccessToDisputeManagement? boolean - Maximum permissions access to dispute management
- MaximumPermissionsPersonalizedFinanceUserAccess? boolean - Maximum permissions personalized finance user access
- MaximumPermissionsCustomAppsOnFSMobile? boolean - Maximum permissions custom apps on fs mobile
- MaximumPermissionsStageManagementDesignUser? boolean - Maximum permissions stage management design user
- MaximumPermissionsSegmentIntelligenceUser? boolean - Maximum permissions segment intelligence user
- MaximumPermissionsFSCArcGraphCommunityUser? boolean - Maximum permissions fsc arc graph community user
- MaximumPermissionsDigitalLendingAdminUser? boolean - Maximum permissions digital lending admin user
- MaximumPermissionsActivateSystemModeFlows? boolean - Maximum permissions activate system mode flows
- MaximumPermissionsPersonalizationPlatform? boolean - Maximum permissions personalization platform
- MaximumPermissionsLeadInspectorUser? boolean - Maximum permissions lead inspector user
- MaximumPermissionsContactInspectorUser? boolean - Maximum permissions contact inspector user
- MaximumPermissionsAccessDisputePrompts? boolean - Maximum permissions access dispute prompts
- UsedLicenses? int - The number of this permission set license that are currently assigned to users.
- MigratableLicenses? int - Migratable licenses
- IsAvailableForIntegrations? boolean - Indicates whether the record is available for integrations (true) or not (false)
- LicenseExpirationPolicy? string - License expiration policy
- IsSupplementLicense? boolean - Indicates whether the record is supplement license (true) or not (false)
- attributes? CustomHttpHeaderSObject_attributes - Metadata attributes for the record
salesforce.types: PermissionSetSObject
Represents a set of permissions that’s used to grant more access to one or more users without changing their profile or reassigning profiles.
Fields
- Id? string - Unique identifier for the record
- Name? string - The unique name of the object in the API. This name can contain only underscores and alphanumeric characters, and must be unique in your organization. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores. Corresponds to API Name in the user interface. Limit: 80 characters.
- Label? string - The permission set label, which corresponds to Label in the user interface. Limit: 80 characters.
- LicenseId? string - The ID of either the related PermissionSetLicense or UserLicense associated with this permission set. Available in API version 38.0 and later. Use this field instead of UserLicenseId, which is deprecated and only available up to API Version 37.0.
- ProfileId? string - If the permission set is owned by a profile, this field returns the ID of the Profile. If the permission set isn’t owned by a profile, this field returns a null value. Available in API version 25.0 and later.
- IsOwnedByProfile? boolean - If true, the permission set is owned by a profile. Available in API version 25.0 and later.
- IsCustom? boolean - If true, the permission set is custom (created by an admin); if false, the permission set is standard and related to a specific permission set license.
- PermissionsEmailSingle? boolean - Indicates whether the email single permission is enabled (true) or not (false)
- PermissionsEmailMass? boolean - Indicates whether the email mass permission is enabled (true) or not (false)
- PermissionsEditTask? boolean - Indicates whether the edit task permission is enabled (true) or not (false)
- PermissionsEditEvent? boolean - Indicates whether the edit event permission is enabled (true) or not (false)
- PermissionsExportReport? boolean - Indicates whether the export report permission is enabled (true) or not (false)
- PermissionsImportPersonal? boolean - Indicates whether the import personal permission is enabled (true) or not (false)
- PermissionsDataExport? boolean - Indicates whether the data export permission is enabled (true) or not (false)
- PermissionsManageUsers? boolean - Indicates whether the manage users permission is enabled (true) or not (false)
- PermissionsEditPublicFilters? boolean - Indicates whether the edit public filters permission is enabled (true) or not (false)
- PermissionsEditPublicTemplates? boolean - Indicates whether the edit public templates permission is enabled (true) or not (false)
- PermissionsModifyAllData? boolean - Indicates whether the modify all data permission is enabled (true) or not (false)
- PermissionsEditBillingInfo? boolean - Indicates whether the edit billing info permission is enabled (true) or not (false)
- PermissionsManageCases? boolean - Indicates whether the manage cases permission is enabled (true) or not (false)
- PermissionsMassInlineEdit? boolean - Indicates whether the mass inline edit permission is enabled (true) or not (false)
- PermissionsEditKnowledge? boolean - Indicates whether the edit knowledge permission is enabled (true) or not (false)
- PermissionsManageKnowledge? boolean - Indicates whether the manage knowledge permission is enabled (true) or not (false)
- PermissionsManageSolutions? boolean - Indicates whether the manage solutions permission is enabled (true) or not (false)
- PermissionsCustomizeApplication? boolean - Indicates whether the customize application permission is enabled (true) or not (false)
- PermissionsEditReadonlyFields? boolean - Indicates whether the edit readonly fields permission is enabled (true) or not (false)
- PermissionsRunReports? boolean - Indicates whether the run reports permission is enabled (true) or not (false)
- PermissionsViewSetup? boolean - Indicates whether the view setup permission is enabled (true) or not (false)
- PermissionsTransferAnyEntity? boolean - Indicates whether the transfer any entity permission is enabled (true) or not (false)
- PermissionsNewReportBuilder? boolean - Indicates whether the new report builder permission is enabled (true) or not (false)
- PermissionsActivateContract? boolean - Indicates whether the activate contract permission is enabled (true) or not (false)
- PermissionsActivateOrder? boolean - Indicates whether the activate order permission is enabled (true) or not (false)
- PermissionsImportLeads? boolean - Indicates whether the import leads permission is enabled (true) or not (false)
- PermissionsManageLeads? boolean - Indicates whether the manage leads permission is enabled (true) or not (false)
- PermissionsTransferAnyLead? boolean - Indicates whether the transfer any lead permission is enabled (true) or not (false)
- PermissionsViewAllData? boolean - Indicates whether the view all data permission is enabled (true) or not (false)
- PermissionsEditPublicDocuments? boolean - Indicates whether the edit public documents permission is enabled (true) or not (false)
- PermissionsViewEncryptedData? boolean - Indicates whether the view encrypted data permission is enabled (true) or not (false)
- PermissionsEditBrandTemplates? boolean - Indicates whether the edit brand templates permission is enabled (true) or not (false)
- PermissionsEditHtmlTemplates? boolean - Indicates whether the edit HTML templates permission is enabled (true) or not (false)
- PermissionsChatterInternalUser? boolean - Indicates whether the chatter internal user permission is enabled (true) or not (false)
- PermissionsManageEncryptionKeys? boolean - Indicates whether the manage encryption keys permission is enabled (true) or not (false)
- PermissionsDeleteActivatedContract? boolean - Indicates whether the delete activated contract permission is enabled (true) or not (false)
- PermissionsChatterInviteExternalUsers? boolean - Indicates whether the chatter invite external users permission is enabled (true) or not (false)
- PermissionsSendSitRequests? boolean - Indicates whether the send sit requests permission is enabled (true) or not (false)
- PermissionsApiUserOnly? boolean - Indicates whether the API user only permission is enabled (true) or not (false)
- PermissionsManageRemoteAccess? boolean - Indicates whether the manage remote access permission is enabled (true) or not (false)
- PermissionsCanUseNewDashboardBuilder? boolean - Indicates whether the can use new dashboard builder permission is enabled (true) or not (false)
- PermissionsManageCategories? boolean - Indicates whether the manage categories permission is enabled (true) or not (false)
- PermissionsConvertLeads? boolean - Indicates whether the convert leads permission is enabled (true) or not (false)
- PermissionsPasswordNeverExpires? boolean - Indicates whether the password never expires permission is enabled (true) or not (false)
- PermissionsUseTeamReassignWizards? boolean - Indicates whether the use team reassign wizards permission is enabled (true) or not (false)
- PermissionsEditActivatedOrders? boolean - Indicates whether the edit activated orders permission is enabled (true) or not (false)
- PermissionsInstallPackaging? boolean - Indicates whether the install packaging permission is enabled (true) or not (false)
- PermissionsPublishPackaging? boolean - Indicates whether the publish packaging permission is enabled (true) or not (false)
- PermissionsChatterOwnGroups? boolean - Indicates whether the chatter own groups permission is enabled (true) or not (false)
- PermissionsEditOppLineItemUnitPrice? boolean - Indicates whether the edit opp line item unit price permission is enabled (true) or not (false)
- PermissionsCreatePackaging? boolean - Indicates whether the create packaging permission is enabled (true) or not (false)
- PermissionsBulkApiHardDelete? boolean - Indicates whether the bulk API hard delete permission is enabled (true) or not (false)
- PermissionsSolutionImport? boolean - Indicates whether the solution import permission is enabled (true) or not (false)
- PermissionsManageCallCenters? boolean - Indicates whether the manage call centers permission is enabled (true) or not (false)
- PermissionsManageSynonyms? boolean - Indicates whether the manage synonyms permission is enabled (true) or not (false)
- PermissionsViewContent? boolean - Indicates whether the view content permission is enabled (true) or not (false)
- PermissionsManageEmailClientConfig? boolean - Indicates whether the manage email client config permission is enabled (true) or not (false)
- PermissionsEnableNotifications? boolean - Indicates whether the enable notifications permission is enabled (true) or not (false)
- PermissionsManageDataIntegrations? boolean - Indicates whether the manage data integrations permission is enabled (true) or not (false)
- PermissionsDistributeFromPersWksp? boolean - Indicates whether the distribute from pers wksp permission is enabled (true) or not (false)
- PermissionsViewDataCategories? boolean - Indicates whether the view data categories permission is enabled (true) or not (false)
- PermissionsManageDataCategories? boolean - Indicates whether the manage data categories permission is enabled (true) or not (false)
- PermissionsAuthorApex? boolean - Indicates whether the author apex permission is enabled (true) or not (false)
- PermissionsManageMobile? boolean - Indicates whether the manage mobile permission is enabled (true) or not (false)
- PermissionsApiEnabled? boolean - Indicates whether the API enabled permission is enabled (true) or not (false)
- PermissionsManageCustomReportTypes? boolean - Indicates whether the manage custom report types permission is enabled (true) or not (false)
- PermissionsEditCaseComments? boolean - Indicates whether the edit case comments permission is enabled (true) or not (false)
- PermissionsTransferAnyCase? boolean - Indicates whether the transfer any case permission is enabled (true) or not (false)
- PermissionsContentAdministrator? boolean - Indicates whether the content administrator permission is enabled (true) or not (false)
- PermissionsCreateWorkspaces? boolean - Indicates whether the create workspaces permission is enabled (true) or not (false)
- PermissionsManageContentPermissions? boolean - Indicates whether the manage content permissions permission is enabled (true) or not (false)
- PermissionsManageContentProperties? boolean - Indicates whether the manage content properties permission is enabled (true) or not (false)
- PermissionsManageContentTypes? boolean - Indicates whether the manage content types permission is enabled (true) or not (false)
- PermissionsManageExchangeConfig? boolean - Indicates whether the manage exchange config permission is enabled (true) or not (false)
- PermissionsManageAnalyticSnapshots? boolean - Indicates whether the manage analytic snapshots permission is enabled (true) or not (false)
- PermissionsScheduleReports? boolean - Indicates whether the schedule reports permission is enabled (true) or not (false)
- PermissionsManageBusinessHourHolidays? boolean - Indicates whether the manage business hour holidays permission is enabled (true) or not (false)
- PermissionsManageEntitlements? boolean - Indicates whether the manage entitlements permission is enabled (true) or not (false)
- PermissionsManageDynamicDashboards? boolean - Indicates whether the manage dynamic dashboards permission is enabled (true) or not (false)
- PermissionsCustomSidebarOnAllPages? boolean - Indicates whether the custom sidebar on all pages permission is enabled (true) or not (false)
- PermissionsManageInteraction? boolean - Indicates whether the manage interaction permission is enabled (true) or not (false)
- PermissionsViewMyTeamsDashboards? boolean - Indicates whether the view my teams dashboards permission is enabled (true) or not (false)
- PermissionsModerateChatter? boolean - Indicates whether the moderate chatter permission is enabled (true) or not (false)
- PermissionsResetPasswords? boolean - Indicates whether the reset passwords permission is enabled (true) or not (false)
- PermissionsFlowUFLRequired? boolean - Indicates whether the flow ufl required permission is enabled (true) or not (false)
- PermissionsCanInsertFeedSystemFields? boolean - Indicates whether the can insert feed system fields permission is enabled (true) or not (false)
- PermissionsActivitiesAccess? boolean - Indicates whether the activities access permission is enabled (true) or not (false)
- PermissionsManageKnowledgeImportExport? boolean - Indicates whether the manage knowledge import export permission is enabled (true) or not (false)
- PermissionsEmailTemplateManagement? boolean - Indicates whether the email template management permission is enabled (true) or not (false)
- PermissionsEmailAdministration? boolean - Indicates whether the email administration permission is enabled (true) or not (false)
- PermissionsManageChatterMessages? boolean - Indicates whether the manage chatter messages permission is enabled (true) or not (false)
- PermissionsAllowEmailIC? boolean - Indicates whether the allow email ic permission is enabled (true) or not (false)
- PermissionsChatterFileLink? boolean - Indicates whether the chatter file link permission is enabled (true) or not (false)
- PermissionsForceTwoFactor? boolean - Indicates whether the force two factor permission is enabled (true) or not (false)
- PermissionsViewEventLogFiles? boolean - Indicates whether the view event log files permission is enabled (true) or not (false)
- PermissionsManageNetworks? boolean - Indicates whether the manage networks permission is enabled (true) or not (false)
- PermissionsManageAuthProviders? boolean - Indicates whether the manage auth providers permission is enabled (true) or not (false)
- PermissionsRunFlow? boolean - Indicates whether the run flow permission is enabled (true) or not (false)
- PermissionsCreateCustomizeDashboards? boolean - Indicates whether the create customize dashboards permission is enabled (true) or not (false)
- PermissionsCreateDashboardFolders? boolean - Indicates whether the create dashboard folders permission is enabled (true) or not (false)
- PermissionsViewPublicDashboards? boolean - Indicates whether the view public dashboards permission is enabled (true) or not (false)
- PermissionsManageDashbdsInPubFolders? boolean - Indicates whether the manage dashbds in pub folders permission is enabled (true) or not (false)
- PermissionsCreateCustomizeReports? boolean - Indicates whether the create customize reports permission is enabled (true) or not (false)
- PermissionsCreateReportFolders? boolean - Indicates whether the create report folders permission is enabled (true) or not (false)
- PermissionsViewPublicReports? boolean - Indicates whether the view public reports permission is enabled (true) or not (false)
- PermissionsManageReportsInPubFolders? boolean - Indicates whether the manage reports in pub folders permission is enabled (true) or not (false)
- PermissionsEditMyDashboards? boolean - Indicates whether the edit my dashboards permission is enabled (true) or not (false)
- PermissionsEditMyReports? boolean - Indicates whether the edit my reports permission is enabled (true) or not (false)
- PermissionsViewAllUsers? boolean - Indicates whether the view all users permission is enabled (true) or not (false)
- PermissionsAllowUniversalSearch? boolean - Indicates whether the allow universal search permission is enabled (true) or not (false)
- PermissionsConnectOrgToEnvironmentHub? boolean - Indicates whether the connect org to environment hub permission is enabled (true) or not (false)
- PermissionsWorkCalibrationUser? boolean - Indicates whether the work calibration user permission is enabled (true) or not (false)
- PermissionsCreateCustomizeFilters? boolean - Indicates whether the create customize filters permission is enabled (true) or not (false)
- PermissionsWorkDotComUserPerm? boolean - Indicates whether the work dot com user perm permission is enabled (true) or not (false)
- PermissionsContentHubUser? boolean - Indicates whether the content hub user permission is enabled (true) or not (false)
- PermissionsGovernNetworks? boolean - Indicates whether the govern networks permission is enabled (true) or not (false)
- PermissionsSalesConsole? boolean - Indicates whether the sales console permission is enabled (true) or not (false)
- PermissionsTwoFactorApi? boolean - Indicates whether the two factor API permission is enabled (true) or not (false)
- PermissionsDeleteTopics? boolean - Indicates whether the delete topics permission is enabled (true) or not (false)
- PermissionsEditTopics? boolean - Indicates whether the edit topics permission is enabled (true) or not (false)
- PermissionsCreateTopics? boolean - Indicates whether the create topics permission is enabled (true) or not (false)
- PermissionsAssignTopics? boolean - Indicates whether the assign topics permission is enabled (true) or not (false)
- PermissionsIdentityEnabled? boolean - Indicates whether the identity enabled permission is enabled (true) or not (false)
- PermissionsIdentityConnect? boolean - Indicates whether the identity connect permission is enabled (true) or not (false)
- PermissionsAllowViewKnowledge? boolean - Indicates whether the allow view knowledge permission is enabled (true) or not (false)
- PermissionsContentWorkspaces? boolean - Indicates whether the content workspaces permission is enabled (true) or not (false)
- PermissionsManageSearchPromotionRules? boolean - Indicates whether the manage search promotion rules permission is enabled (true) or not (false)
- PermissionsCustomMobileAppsAccess? boolean - Indicates whether the custom mobile apps access permission is enabled (true) or not (false)
- PermissionsViewHelpLink? boolean - Indicates whether the view help link permission is enabled (true) or not (false)
- PermissionsManageProfilesPermissionsets? boolean - Indicates whether the manage profiles permissionsets permission is enabled (true) or not (false)
- PermissionsAssignPermissionSets? boolean - Indicates whether the assign permission sets permission is enabled (true) or not (false)
- PermissionsManageRoles? boolean - Indicates whether the manage roles permission is enabled (true) or not (false)
- PermissionsManageIpAddresses? boolean - Indicates whether the manage IP addresses permission is enabled (true) or not (false)
- PermissionsManageSharing? boolean - Indicates whether the manage sharing permission is enabled (true) or not (false)
- PermissionsManageInternalUsers? boolean - Indicates whether the manage internal users permission is enabled (true) or not (false)
- PermissionsManagePasswordPolicies? boolean - Indicates whether the manage password policies permission is enabled (true) or not (false)
- PermissionsManageLoginAccessPolicies? boolean - Indicates whether the manage login access policies permission is enabled (true) or not (false)
- PermissionsViewPlatformEvents? boolean - Indicates whether the view platform events permission is enabled (true) or not (false)
- PermissionsManageCustomPermissions? boolean - Indicates whether the manage custom permissions permission is enabled (true) or not (false)
- PermissionsCanVerifyComment? boolean - Indicates whether the can verify comment permission is enabled (true) or not (false)
- PermissionsManageUnlistedGroups? boolean - Indicates whether the manage unlisted groups permission is enabled (true) or not (false)
- PermissionsStdAutomaticActivityCapture? boolean - Indicates whether the std automatic activity capture permission is enabled (true) or not (false)
- PermissionsInsightsAppDashboardEditor? boolean - Indicates whether the insights app dashboard editor permission is enabled (true) or not (false)
- PermissionsManageTwoFactor? boolean - Indicates whether the manage two factor permission is enabled (true) or not (false)
- PermissionsInsightsAppUser? boolean - Indicates whether the insights app user permission is enabled (true) or not (false)
- PermissionsInsightsAppAdmin? boolean - Indicates whether the insights app admin permission is enabled (true) or not (false)
- PermissionsInsightsAppEltEditor? boolean - Indicates whether the insights app elt editor permission is enabled (true) or not (false)
- PermissionsInsightsAppUploadUser? boolean - Indicates whether the insights app upload user permission is enabled (true) or not (false)
- PermissionsInsightsCreateApplication? boolean - Indicates whether the insights create application permission is enabled (true) or not (false)
- PermissionsLightningExperienceUser? boolean - Indicates whether the lightning experience user permission is enabled (true) or not (false)
- PermissionsViewDataLeakageEvents? boolean - Indicates whether the view data leakage events permission is enabled (true) or not (false)
- PermissionsConfigCustomRecs? boolean - Indicates whether the config custom recs permission is enabled (true) or not (false)
- PermissionsSubmitMacrosAllowed? boolean - Indicates whether the submit macros allowed permission is enabled (true) or not (false)
- PermissionsBulkMacrosAllowed? boolean - Indicates whether the bulk macros allowed permission is enabled (true) or not (false)
- PermissionsShareInternalArticles? boolean - Indicates whether the share internal articles permission is enabled (true) or not (false)
- PermissionsManageSessionPermissionSets? boolean - Indicates whether the manage session permission sets permission is enabled (true) or not (false)
- PermissionsManageTemplatedApp? boolean - Indicates whether the manage templated app permission is enabled (true) or not (false)
- PermissionsUseTemplatedApp? boolean - Indicates whether the use templated app permission is enabled (true) or not (false)
- PermissionsSendAnnouncementEmails? boolean - Indicates whether the send announcement emails permission is enabled (true) or not (false)
- PermissionsChatterEditOwnPost? boolean - Indicates whether the chatter edit own post permission is enabled (true) or not (false)
- PermissionsChatterEditOwnRecordPost? boolean - Indicates whether the chatter edit own record post permission is enabled (true) or not (false)
- PermissionsWaveTabularDownload? boolean - Indicates whether the wave tabular download permission is enabled (true) or not (false)
- PermissionsWaveCommunityUser? boolean - Indicates whether the wave community user permission is enabled (true) or not (false)
- PermissionsAutomaticActivityCapture? boolean - Indicates whether the automatic activity capture permission is enabled (true) or not (false)
- PermissionsImportCustomObjects? boolean - Indicates whether the import custom objects permission is enabled (true) or not (false)
- PermissionsSalesforceIQInbox? boolean - Indicates whether the salesforce iq inbox permission is enabled (true) or not (false)
- PermissionsDelegatedTwoFactor? boolean - Indicates whether the delegated two factor permission is enabled (true) or not (false)
- PermissionsChatterComposeUiCodesnippet? boolean - Indicates whether the chatter compose UI codesnippet permission is enabled (true) or not (false)
- PermissionsSelectFilesFromSalesforce? boolean - Indicates whether the select files from salesforce permission is enabled (true) or not (false)
- PermissionsModerateNetworkUsers? boolean - Indicates whether the moderate network users permission is enabled (true) or not (false)
- PermissionsMergeTopics? boolean - Indicates whether the merge topics permission is enabled (true) or not (false)
- PermissionsSubscribeToLightningReports? boolean - Indicates whether the subscribe to lightning reports permission is enabled (true) or not (false)
- PermissionsManagePvtRptsAndDashbds? boolean - Indicates whether the manage pvt rpts and dashbds permission is enabled (true) or not (false)
- PermissionsAllowLightningLogin? boolean - Indicates whether the allow lightning login permission is enabled (true) or not (false)
- PermissionsCampaignInfluence2? boolean - Indicates whether the campaign influence 2 permission is enabled (true) or not (false)
- PermissionsViewDataAssessment? boolean - Indicates whether the view data assessment permission is enabled (true) or not (false)
- PermissionsRemoveDirectMessageMembers? boolean - Indicates whether the remove direct message members permission is enabled (true) or not (false)
- PermissionsCanApproveFeedPost? boolean - Indicates whether the can approve feed post permission is enabled (true) or not (false)
- PermissionsAddDirectMessageMembers? boolean - Indicates whether the add direct message members permission is enabled (true) or not (false)
- PermissionsAllowViewEditConvertedLeads? boolean - Indicates whether the allow view edit converted leads permission is enabled (true) or not (false)
- PermissionsShowCompanyNameAsUserBadge? boolean - Indicates whether the show company name as user badge permission is enabled (true) or not (false)
- PermissionsAccessCMC? boolean - Indicates whether the access cmc permission is enabled (true) or not (false)
- PermissionsViewHealthCheck? boolean - Indicates whether the view health check permission is enabled (true) or not (false)
- PermissionsManageHealthCheck? boolean - Indicates whether the manage health check permission is enabled (true) or not (false)
- PermissionsPackaging2? boolean - Indicates whether the packaging 2 permission is enabled (true) or not (false)
- PermissionsMa