databag/app/mobile/src/api/getCardCloseMessage.js
2022-09-26 12:14:06 -07:00

9 lines
323 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function getCardCloseMessage(server, token, cardId) {
let message = await fetchWithTimeout(`https://${server}/contact/cards/${cardId}/closeMessage?agent=${token}`, { method: 'GET' });
checkResponse(message);
return await message.json();
}