請求參數
Header 參數
export interface ApifoxModel {
? ? "X-GEWE-TOKEN": string;
? ? [property: string]: any;
}
Body 參數application/json
export interface ApifoxModel {
? ? /**
? ? * 設備ID
? ? */
? ? appId: string;
? ? /**
? ? * 是否允許
? ? */
? ? enabled: boolean;
? ? [property: string]: any;
}
示例
{
? ? "appId": "",
? ? "enabled": true
}
示例代碼
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/sns/strangerVisibilityEnabled' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
? ? "appId": "",
? ? "enabled": true
}'
返回響應
成功(200)
HTTP 狀態(tài)碼: 200 內容格式: JSON application/json
數據結構
export interface ApifoxModel {
? ? msg: string;
? ? ret: number;
? ? [property: string]: any;
}
示例
{
? ? "ret": 200,
? ? "msg": "操作成功"
}