feat: Adds bulk_invite api for onboarding view (#8931)

- New API for bulk email invite
This commit is contained in:
Nithin David Thomas
2024-02-16 03:31:27 -08:00
committed by GitHub
parent 9c07b6dd46
commit a902b49bc5
2 changed files with 33 additions and 0 deletions

View File

@@ -1,9 +1,17 @@
/* global axios */
import ApiClient from './ApiClient';
class Agents extends ApiClient {
constructor() {
super('agents', { accountScoped: true });
}
bulkInvite({ emails }) {
return axios.post(`${this.url}/bulk_create`, {
emails,
});
}
}
export default new Agents();