* @param filters the filters
* @return the call feedback summary
* @throws TwilioRestException the twilio rest exception
*/
public FeedbackSummary createFeedbackSummary(final Map<String, String> filters) throws TwilioRestException {
TwilioRestResponse response = getClient()
.safeRequest(getResourceLocation("") + "/Calls/FeedbackSummary.json", "POST", filters);
return new FeedbackSummary(getClient(), response.toMap());
}