mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 19:49:16 +00:00
10 lines
307 B
JavaScript
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()
|
|
}
|
|
|