Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created March 7, 2024 06:08
Show Gist options
  • Save TheShubhamVsnv/edba29ad077f136702d938ad5f67302e to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/edba29ad077f136702d938ad5f67302e to your computer and use it in GitHub Desktop.
// Define the HTTP GET method to retrieve contacts
@HttpGet
global static List<Contact> getContacts() {
// Retrieve specific fields for up to 10 contacts
return [SELECT Id, Name, Email, Phone FROM Contact LIMIT 10];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment