databag/app/mobile/src/api/getCardDetail.js
2022-09-15 11:26:03 -07:00

10 lines
332 B
JavaScript

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