WeChatFerry/clients/gohttp/public/swagger/swagger.json

1701 lines
56 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"swagger": "2.0",
"info": {
"description": "基于 WeChatFerry RPC 实现的微信接口,使用 Go 语言编写,无第三方运行时依赖,易于对接任意编程语言。",
"title": "WeChat Rest Api",
"contact": {
"name": "WeChatRest",
"url": "https://github.com/opentdp/wechat-rest"
},
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "v0.8.0"
},
"basePath": "/api",
"paths": {
"/accept_new_friend": {
"post": {
"produces": [
"application/json"
],
"summary": "接受好友请求",
"parameters": [
{
"description": "接受好友参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.AcceptNewFriendRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/add_chatroom_members": {
"post": {
"produces": [
"application/json"
],
"summary": "添加群成员",
"parameters": [
{
"description": "管理群成员参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ChatroomMembersRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/alias_in_chatroom": {
"post": {
"produces": [
"application/json"
],
"summary": "获取群成员昵称",
"parameters": [
{
"description": "获取群成员昵称参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetAliasInChatRoomRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/avatars": {
"post": {
"produces": [
"application/json"
],
"summary": "获取头像列表",
"parameters": [
{
"description": "获取头像列表参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetAvatarsRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/wcfrest.AvatarPayload"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/chatroom_members": {
"post": {
"produces": [
"application/json"
],
"summary": "获取群成员列表",
"parameters": [
{
"description": "获取群成员列表参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetChatRoomMembersRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/wcfrest.ContactPayload"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/chatrooms": {
"post": {
"produces": [
"application/json"
],
"summary": "获取群列表",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/wcfrest.ContactPayload"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/contacts": {
"post": {
"produces": [
"application/json"
],
"summary": "获取完整通讯录",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/wcfrest.ContactPayload"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/db_names": {
"post": {
"produces": [
"application/json"
],
"summary": "获取数据库列表",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/db_query_sql": {
"post": {
"produces": [
"application/json"
],
"summary": "执行数据库查询",
"parameters": [
{
"description": "数据库查询参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.DbSqlQueryRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/db_tables": {
"post": {
"produces": [
"application/json"
],
"summary": "获取数据库表列表",
"parameters": [
{
"description": "获取数据库表列表参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetDbTablesRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/wcfrest.DbTablePayload"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/del_chatroom_members": {
"post": {
"produces": [
"application/json"
],
"summary": "删除群成员",
"parameters": [
{
"description": "管理群成员参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ChatroomMembersRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/disable_receiver": {
"post": {
"produces": [
"application/json"
],
"summary": "关闭推送消息到URL",
"parameters": [
{
"description": "推送消息到URL参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ReceiverRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/download_attach": {
"post": {
"produces": [
"application/json"
],
"summary": "下载附件",
"parameters": [
{
"description": "下载附件参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.DownloadAttachRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/download_image": {
"post": {
"produces": [
"application/json"
],
"summary": "下载图片",
"parameters": [
{
"description": "下载图片参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.DownloadImageRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/enable_receiver": {
"post": {
"produces": [
"application/json"
],
"summary": "开启推送消息到URL",
"parameters": [
{
"description": "推送消息到URL参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ReceiverRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/forward_msg": {
"post": {
"produces": [
"application/json"
],
"summary": "转发消息",
"parameters": [
{
"description": "转发消息参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ForwardMsgRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/friends": {
"post": {
"produces": [
"application/json"
],
"summary": "获取好友列表",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/wcfrest.ContactPayload"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/get_audio_msg": {
"post": {
"produces": [
"application/json"
],
"summary": "获取语音消息",
"parameters": [
{
"description": "获取语音消息参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetAudioMsgRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/get_ocr_result": {
"post": {
"produces": [
"application/json"
],
"summary": "获取OCR识别结果",
"parameters": [
{
"description": "获取OCR识别结果参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetOcrRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/invite_chatroom_members": {
"post": {
"produces": [
"application/json"
],
"summary": "邀请群成员",
"parameters": [
{
"description": "管理群成员参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ChatroomMembersRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/is_login": {
"post": {
"produces": [
"application/json"
],
"summary": "检查登录状态",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "boolean"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/msg_types": {
"post": {
"produces": [
"application/json"
],
"summary": "获取所有消息类型",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/receive_transfer": {
"post": {
"produces": [
"application/json"
],
"summary": "接受转账",
"parameters": [
{
"description": "接受转账参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.ReceiveTransferRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/refresh_pyq": {
"post": {
"produces": [
"application/json"
],
"summary": "刷新朋友圈",
"parameters": [
{
"description": "刷新朋友圈参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.RefreshPyqRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/revoke_msg": {
"post": {
"produces": [
"application/json"
],
"summary": "撤回消息",
"parameters": [
{
"description": "撤回消息参数",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.RevokeMsgRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/self_info": {
"post": {
"produces": [
"application/json"
],
"summary": "获取登录账号个人信息",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.UserInfoPayload"
}
},
"400": {
"description": "非法请求",
"schema": {
"type": "string"
}
},
"500": {
"description": "内部服务器错误",
"schema": {
"type": "string"
}
}
}
}
},
"/self_wxid": {
"post": {
"produces": [
"application/json"
],
"summary": "wxid",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/send_file": {
"post": {
"produces": [
"application/json"
],
"summary": "",
"parameters": [
{
"description": "",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.SendFileRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/send_img": {
"post": {
"produces": [
"application/json"
],
"summary": "",
"parameters": [
{
"description": "",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.SendImgRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/send_pat_msg": {
"post": {
"produces": [
"application/json"
],
"summary": "",
"parameters": [
{
"description": "",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.SendPatMsgRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/send_rich_text": {
"post": {
"produces": [
"application/json"
],
"summary": "",
"parameters": [
{
"description": "",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.SendRichTextRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/send_txt": {
"post": {
"produces": [
"application/json"
],
"summary": "",
"parameters": [
{
"description": "",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.SendTxtRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.CommonPayload"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/socket_receiver": {
"get": {
"produces": [
"application/json"
],
"tags": [
"websocket"
],
"summary": "Socket",
"responses": {
"101": {
"description": "Switching Protocols ",
"schema": {
"type": "string"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
},
"/user_info": {
"post": {
"produces": [
"application/json"
],
"summary": "wxid",
"parameters": [
{
"description": "wxid",
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/wcfrest.GetInfoByWxidRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/wcfrest.ContactPayload"
}
},
"400": {
"description": "",
"schema": {
"type": "string"
}
},
"500": {
"description": "",
"schema": {
"type": "string"
}
}
}
}
}
},
"definitions": {
"wcfrest.AcceptNewFriendRequest": {
"type": "object",
"properties": {
"scene": {
"description": "17 30 ",
"type": "integer"
},
"v3": {
"description": "",
"type": "string"
},
"v4": {
"description": " Ticket",
"type": "string"
}
}
},
"wcfrest.AvatarPayload": {
"type": "object",
"properties": {
"big_head_img_url": {
"description": " url",
"type": "string"
},
"small_head_img_url": {
"description": " url",
"type": "string"
},
"usr_name": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.ChatroomMembersRequest": {
"type": "object",
"properties": {
"roomid": {
"description": " id",
"type": "string"
},
"wxids": {
"description": " id ",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"wcfrest.CommonPayload": {
"type": "object",
"properties": {
"error": {
"description": ""
},
"result": {
"description": "",
"type": "string"
},
"success": {
"description": "",
"type": "boolean"
}
}
},
"wcfrest.ContactPayload": {
"type": "object",
"properties": {
"city": {
"description": "",
"type": "string"
},
"code": {
"description": "",
"type": "string"
},
"country": {
"description": "",
"type": "string"
},
"gender": {
"description": "",
"type": "integer"
},
"name": {
"description": "",
"type": "string"
},
"province": {
"description": "/",
"type": "string"
},
"remark": {
"description": "",
"type": "string"
},
"wxid": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.DbSqlQueryRequest": {
"type": "object",
"properties": {
"db": {
"description": "",
"type": "string"
},
"sql": {
"description": " SQL",
"type": "string"
}
}
},
"wcfrest.DbTablePayload": {
"type": "object",
"properties": {
"name": {
"description": "",
"type": "string"
},
"sql": {
"description": " SQL",
"type": "string"
}
}
},
"wcfrest.DownloadAttachRequest": {
"type": "object",
"properties": {
"extra": {
"description": " extra ",
"type": "string"
},
"msgid": {
"description": " id",
"type": "integer"
},
"thumb": {
"description": " thumb ",
"type": "string"
}
}
},
"wcfrest.DownloadImageRequest": {
"type": "object",
"properties": {
"dir": {
"description": "",
"type": "string"
},
"extra": {
"description": " extra ",
"type": "string"
},
"msgid": {
"description": " id",
"type": "integer"
},
"timeout": {
"description": "",
"type": "integer"
}
}
},
"wcfrest.ForwardMsgRequest": {
"type": "object",
"properties": {
"id": {
"description": " id",
"type": "integer"
},
"receiver": {
"description": " id ",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"wcfrest.GetAliasInChatRoomRequest": {
"type": "object",
"properties": {
"roomid": {
"description": " id",
"type": "string"
},
"wxid": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.GetAudioMsgRequest": {
"type": "object",
"properties": {
"msgid": {
"description": " id",
"type": "integer"
},
"path": {
"description": "",
"type": "string"
},
"timeout": {
"description": "",
"type": "integer"
}
}
},
"wcfrest.GetAvatarsRequest": {
"type": "object",
"properties": {
"wxids": {
"description": " id ",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"wcfrest.GetChatRoomMembersRequest": {
"type": "object",
"properties": {
"roomid": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.GetDbTablesRequest": {
"type": "object",
"properties": {
"db": {
"description": "",
"type": "string"
}
}
},
"wcfrest.GetInfoByWxidRequest": {
"type": "object",
"properties": {
"wxid": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.GetOcrRequest": {
"type": "object",
"properties": {
"extra": {
"description": " extra ",
"type": "string"
},
"timeout": {
"description": "",
"type": "integer"
}
}
},
"wcfrest.ReceiveTransferRequest": {
"type": "object",
"properties": {
"taid": {
"description": "Transaction id",
"type": "string"
},
"tfid": {
"description": "id transferid",
"type": "string"
},
"wxid": {
"description": "",
"type": "string"
}
}
},
"wcfrest.ReceiverRequest": {
"type": "object",
"properties": {
"url": {
"description": " url",
"type": "string"
}
}
},
"wcfrest.RefreshPyqRequest": {
"type": "object",
"properties": {
"id": {
"description": " id",
"type": "integer"
}
}
},
"wcfrest.RevokeMsgRequest": {
"type": "object",
"properties": {
"msgid": {
"description": " id",
"type": "integer"
}
}
},
"wcfrest.SendFileRequest": {
"type": "object",
"properties": {
"path": {
"description": "",
"type": "string"
},
"receiver": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.SendImgRequest": {
"type": "object",
"properties": {
"path": {
"description": "",
"type": "string"
},
"receiver": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.SendPatMsgRequest": {
"type": "object",
"properties": {
"roomid": {
"description": " id",
"type": "string"
},
"wxid": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.SendRichTextRequest": {
"type": "object",
"properties": {
"account": {
"description": " id gh_ ",
"type": "string"
},
"digest": {
"description": "",
"type": "string"
},
"name": {
"description": "",
"type": "string"
},
"receiver": {
"description": " id",
"type": "string"
},
"thumburl": {
"description": "",
"type": "string"
},
"title": {
"description": "",
"type": "string"
},
"url": {
"description": "",
"type": "string"
}
}
},
"wcfrest.SendTxtRequest": {
"type": "object",
"properties": {
"aters": {
"description": " At id ",
"type": "array",
"items": {
"type": "string"
}
},
"msg": {
"description": "",
"type": "string"
},
"receiver": {
"description": " id",
"type": "string"
}
}
},
"wcfrest.UserInfoPayload": {
"type": "object",
"properties": {
"home": {
"description": "/",
"type": "string"
},
"mobile": {
"description": "",
"type": "string"
},
"name": {
"description": "",
"type": "string"
},
"wxid": {
"description": " id",
"type": "string"
}
}
}
}
}