How to make Salesforce BULK API V1 Query request from PostMan?
Using PostMan client, we can make Salesforce Bulk API V1 create job, create batch, check batch status, close job and check job status requests. 1. Create a Connected App in ....
Using PostMan client, we can make Salesforce Bulk API V1 create job, create batch, check batch status, close job and check job status requests. 1. Create a Connected App in ....
GET Request to https://{YOUR_DOMAIN_URL}/services/data/v56.0/limits/ can be used to find Salesforce Storage Usage using REST API. 1. Create a Connected App in Salesforce. Callback URL should be https://{Your Domain}.my.salesforce.com/services/oauth2/callback Example: https://test-ec-dev-ed.develop.my.salesforce.com/services/oauth2/callback ....
1. Create a Connected App in Salesforce. Callback URL should be https://{Your Salesforce Domain}.my.salesforce.com/services/oauth2/callback. My Org Callback URL is https://test-ec-dev-ed.develop.my.salesforce.com/services/oauth2/callback. 2. Do a POST Request to https://{Your Salesforce Domain}.my.salesforce.com/services/oauth2/token to ....
1. Create a Connected App for REST API. 2. Get the token by doing a POST request. 3. Do a POST request to create a record using the access token ....
Path:/services/data/v53.0/quickActions/SendEmail HTTP Method:POST Body:{ "contextId" : "001D000000JRSGf", "record": { "HtmlBody": "<div+style="font-family:+Arial;+font-size:+14px;">Test</div>", "Subject": "InfallibleTechie", "ToIds": ["0038c00002bkSPZAA2"] }} Example: Output:
The following exception occurs when SendEmail from Case object is used and contextId is not passed. To resolve the issue, please add contextId to the POST body.message: performQuickAction for Case.SendEmail ....
Enable "Email-To-Case".Path:/services/data/v53.0/sobjects/Case/quickActions/SendEmail HTTP Method:POST Body:{ "contextId": "5008c00001Ejue0AAB" "record": { "HtmlBody": "<div+style="font-family:+Arial;+font-size:+14px;">Test</div>", "Subject": "InfallibleTechie", "ToIds": ["0038c00002bkSPZAA2"] }} Example: Output:
We can use emailSimple REST API to send emails from Salesforce platform. Path: /services/data/v53.0/actions/standard/emailSimple HTTP Method: POST Body: { "inputs" : [ { "emailBody" : "Email body", ....
Sample Code: @RestResource(urlMapping='/InboundRESTAPI/*') global with sharing class InboundRESTAPIController { @HttpGet global static Account fetchAccount() { RestRequest req = RestContext.request; Map < String, String > ....
End Point URL: https://yourInstance.salesforce.com/services/data/v52.0/sobjects/ObjectAPIName/ExternalIdFieldAPI Name/ExternalIdValue Example: https://infallibletechie5-dev-ed.my.salesforce.com/services/data/v51.0/sobjects/Employee__c/Email__c/test2@testing.com Workbench: Reference Article - https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/using_resources_retrieve_with_externalid.htm To use Postman client, use the below steps. 1. Create a Connected App. Update the Callback URL as ....