Skip to content

Instantly share code, notes, and snippets.

@saicharanreddyk
Created May 22, 2020 17:09
Show Gist options
  • Save saicharanreddyk/7d0a350cce48d358a189d0f22e5178d0 to your computer and use it in GitHub Desktop.
Save saicharanreddyk/7d0a350cce48d358a189d0f22e5178d0 to your computer and use it in GitHub Desktop.
force:data:record
PS C:\Users\Saicharan Reddy K\Desktop\VSCodeSetup> sfdx force:data:record:create -s Contact -v "LastName=Acme"
Successfully created record: 0030K00002IDJOWQA5.
PS C:\Users\Saicharan Reddy K\Desktop\VSCodeSetup> sfdx force:data:record:update -s Contact -i 0030K00002IDJOW -v "LastName=AcmeUpdate"
Successfully updated record: 0030K00002IDJOW.
PS C:\Users\Saicharan Reddy K\Desktop\VSCodeSetup> sfdx force:data:record:get -s Contact -i 0030K00002IDJOW
attributes:
type: "Contact"
url: "/services/data/v48.0/sobjects/Contact/0030K00002IDJOWQA5"
Id: "0030K00002IDJOWQA5"
IsDeleted: null
MasterRecordId: null
AccountId: null
LastName: "AcmeUpdate"
FirstName: null
Salutation: null
MiddleName: null
Suffix: null
Name: "AcmeUpdate"
RecordTypeId: "0120K000000OnwAQAS"
OtherStreet: null
OtherCity: null
OtherState: null
OtherPostalCode: null
OtherCountry: null
OtherLatitude: null
OtherLongitude: null
OtherGeocodeAccuracy: null
OtherAddress: null
MailingStreet: null
MailingCity: null
MailingState: null
MailingPostalCode: null
MailingCountry: null
MailingLatitude: null
MailingLongitude: null
MailingGeocodeAccuracy: null
MailingAddress: null
Phone: null
Fax: null
MobilePhone: null
HomePhone: null
OtherPhone: null
AssistantPhone: null
ReportsToId: null
Email: null
Title: null
AssistantName: null
LeadSource: null
Birthdate: null
Description: null
OwnerId: "00528000002V5MrAAK"
CreatedDate: "2020-05-22T16:57:37.000+0000"
CreatedById: "00528000002V5MrAAK"
LastModifiedDate: "2020-05-22T17:05:02.000+0000"
LastModifiedById: "00528000002V5MrAAK"
SystemModstamp: "2020-05-22T17:05:02.000+0000"
LastActivityDate: null
LastCURequestDate: null
LastCUUpdateDate: null
LastViewedDate: "2020-05-22T17:05:02.000+0000"
LastReferencedDate: "2020-05-22T17:05:02.000+0000"
EmailBouncedReason: null
EmailBouncedDate: null
IsEmailBounced: null
PhotoUrl: null
Jigsaw: null
JigsawContactId: null
CleanStatus: "Pending"
IndividualId: null
Level__c: null
Languages__c: null
Account_Number__c: null
Do_Not_Contact__c: null
Required_information_provided__c: null
Day_of_the_Week__c: "Saturday"
Whatsapp__c: "<a href=\"https://wa.me/\" target=\"_blank\">whatsapp</a>"
Picture__c: null
PS C:\Users\Saicharan Reddy K\Desktop\VSCodeSetup> sfdx force:data:record:delete -s Contact -i 0030K00002IDJOW
Successfully deleted record: 0030K00002IDJOW.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment