请求参数
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 状态码: 200 内容格式: JSON application/json
数据结构
export interface ApifoxModel {msg: string;ret: number;[property: string]: any;
}
示例
{"ret": 200,"msg": "操作成功"
}