![](https://www.infallibletechie.com/wp-content/uploads/2023/05/Fetch-Case-record-using-Salesforce-REST-API-1024x576.jpg)
We can make a GET Request to https://{Your_Domain_URL}/services/data/v57.0/sobjects/case/{Case_Record_Id} using Access Token to fetch Salesforce Case record.
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
![](https://www.infallibletechie.com/wp-content/uploads/2023/01/Salesforce-Connected-App-for-PostMan.png)
2. Get the Access token.
Endpoint URL:
https://test-ec-dev-ed.develop.my.salesforce.com/services/oauth2/token
![](https://www.infallibletechie.com/wp-content/uploads/2023/01/Salesforce-Access-Token.png)
3. Use the Access Token from Step 2 and make a GET request to https://{Your_Domain_URL}/services/data/v57.0/sobjects/case/{Case_Record_Id}.
Endpoint URL:
![](https://www.infallibletechie.com/wp-content/uploads/2023/05/Salesforce-REST-API-Case-Record.png)