import apiService from '../services/api_service' export async function addSeat(tenantId, email) { const { data } = await apiService.post('/account/seats', { tenant_id: tenantId, email }) return data } export async function removeSeat(seatId) { const { data } = await apiService.delete(`/account/seats/${seatId}`) return data }