獲取通訊錄列表緩存
通訊錄列表數(shù)據(jù)緩存10分鐘专甩,超時(shí)則需要重新調(diào)用獲取通訊錄列表接口
請(qǐng)求參數(shù)
Header 參數(shù)
export interface ApifoxModel {
? ? "X-GEWE-TOKEN": string;
? ? [property: string]: any;
}
Body 參數(shù)? ? ?application/json
export interface ApifoxModel {
? ? /**
? ? * 設(shè)備ID
? ? */
? ? appId: string;
? ? [property: string]: any;
}
示例
{
? ? "appId": ""
}
示例代碼
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/contacts/fetchContactsListCache' \
--header 'X-GEWE-TOKEN: ' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
? ? "appId": ""
}'
返回響應(yīng)
成功(200)
HTTP 狀態(tài)碼:?200? ? ?內(nèi)容格式:?JSON
數(shù)據(jù)結(jié)構(gòu)
export interface ApifoxModel {
? ? msg: string;
? ? ret: number;
? ? [property: string]: any;
}
示例
{
? ? "ret": 200,
? ? "msg": "操作成功"
}