databag/app/mobile/api/addCard.js
2022-09-07 00:32:06 -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();
}