Salesforce REST API

Salesforce

How to Send Email to Contact and relate it to Case via Salesforce REST API?

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:  

Salesforce

How to fetch data using External Id in Salesforce REST API?

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/[email protected] 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 ....