databag/app/mobile/src/api/getCard.js
2022-10-25 08:58:12 -07:00

10 lines
313 B
JavaScript

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