inbox view

This commit is contained in:
Pranav
2024-02-13 19:12:56 -08:00
parent bd481ad314
commit 2e768e2042
8 changed files with 127 additions and 10 deletions
@@ -25,6 +25,16 @@ class SummaryReportsAPI extends ApiClient {
},
});
}
getInboxReports({ since, until, businessHours } = {}) {
return axios.get(`${this.url}/inbox`, {
params: {
since,
until,
business_hours: businessHours,
},
});
}
}
export default new SummaryReportsAPI();