查询指定项目属性接口
1. 查询指定项目属性
接口属性
- 功能: 获取制定项目的分类信息
- 主码: 303
- 子码: 1
- 名称: GetClubRooms
请求参数
参数 |
必选 |
类型 |
说明 |
name |
ture |
string |
请求的项目名 |
type |
true |
int |
请求项目的类型。1:类型一;2:类型二 。 |
返回字段
返回字段 |
字段类型 |
说明 |
status |
int |
返回结果状态。0:正常;1:错误。 |
company |
string |
所属公司名 |
category |
string |
所属类型 |
状态码
状态码 |
状态信息 |
说明 |
200 |
OK |
成功 |
401 |
Unauthorized |
未授权 |
403 |
Forbidden |
没有权限 |
500 |
Interernal Server Error |
服务器内部错误 |
接口示例
地址:http://www.api.com/index.php?name=可口可乐&type=1
{
"state": 0,
"company": "可口可乐",
"category": "饮料"
}
错误码
{
"code": 错误码(0 表示成功),
"message": 错误消息,
"data": 数据对象
}