GET api/QueryTheatreList/api/TheatreList
获取系统中所有剧场列表。 认证方式:HAWK,密钥:KEY+UPPER(MD5(密码))。
请求信息
URI参数
None.
窗体参数
None.
回复信息
资源描述
获取系统中所有剧场列表。 认证方式:HAWK,密钥:KEY+UPPER(MD5(密码))。
Collection of Theatre| Name | Description | Type | Additional information |
|---|---|---|---|
| theatreid |
剧场ID |
string |
None. |
| theatrename |
剧场名称 |
string |
None. |
回复格式
Test application/json, text/json
Sample:
[
{
"theatreid": "sample string 1",
"theatrename": "sample string 2"
},
{
"theatreid": "sample string 1",
"theatrename": "sample string 2"
}
]
Test application/xml, text/xml
Sample:
<ArrayOfTheatre xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TourWebApi.Models.Result">
<Theatre>
<theatreid>sample string 1</theatreid>
<theatrename>sample string 2</theatrename>
</Theatre>
<Theatre>
<theatreid>sample string 1</theatreid>
<theatrename>sample string 2</theatrename>
</Theatre>
</ArrayOfTheatre>