databag/net/web/src/api/getCardDetail.js
2022-04-25 22:25:03 -07:00

10 lines
307 B
JavaScript

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