
답변 2개
Please try below.@RestResource(urlMapping='/CaseComments__c/*')global with sharing class CaseCommentscListview{@HttpGet global static List<CaseComments__c> getCaseCommentsId() { RestRequest req = RestContext.request; RestResponse res = RestContext.response; String Id = req.requestURI.substring(req.requestURI.lastIndexOf('/')+1); List<CaseComments__c> result = [Select id from CaseComments__c where Case__c=:id]; return result; }}