databag/net/web/src/Api/addCard.js
2022-04-05 11:39:18 -07:00

9 lines
287 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function addCard(token, message) {
let card = await fetchWithTimeout(`/contact/cards?agent=${token}`, { method: 'POST', body: JSON.stringify(message)} );
checkResponse(card);
return await card.json();
}