22d1c8baf2
- New Inbox Member APIs - Return JSON errors for Platform APIs
17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
/* global axios */
|
|
import ApiClient from './ApiClient';
|
|
|
|
class InboxMembers extends ApiClient {
|
|
constructor() {
|
|
super('inbox_members', { accountScoped: true });
|
|
}
|
|
|
|
update({ inboxId, agentList }) {
|
|
return axios.patch(this.url, {
|
|
inbox_id: inboxId,
|
|
user_ids: agentList,
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new InboxMembers();
|