POST api/Pos/MiniProgram/Guider/Add
添加一个导游
Request Information
URI Parameters
None.
Body Parameters
CrmGuiderAddParmName | Description | Type | Additional information |
---|---|---|---|
guidernumber |
导游证号。 |
string |
Required Max length: 20 |
guidername |
姓名。 |
string |
Required Max length: 20 |
sex |
性别。 W女性,M男性。 |
string |
Max length: 1 |
languagetype |
语种。 |
string |
Max length: 20 |
phone |
电话号码 |
string |
Max length: 20 |
mobile |
手机号码。 |
string |
Max length: 20 |
fax |
传真。 |
string |
Max length: 20 |
邮箱。 |
string |
Max length: 40 |
|
mailaddress |
通讯地址。 |
string |
Max length: 100 |
memory |
备注。 |
string |
Max length: 100 |
photo |
图片内容。 请使用JPG格式,直接传送图片的BUFFER,使用BYTE[]。 在后台使用这个图片时,将直接使用这个Buffer(BYTE[])构造一个图片。 请注意,后台不会验证这个图片是否是一个合法的图片,但会验证这个BUFFER的总长度。总长度超过1024*1024*2,会发出异常。 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "guidernumber": "sample string 1", "guidername": "sample string 2", "sex": "sample string 3", "languagetype": "sample string 4", "phone": "sample string 5", "mobile": "sample string 6", "fax": "sample string 7", "email": "sample string 8", "mailaddress": "sample string 9", "memory": "sample string 10", "photo": "sample string 11" }
application/xml, text/xml
Sample:
<CrmGuiderAddParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer.Tour.V5.Parm"> <email>sample string 8</email> <fax>sample string 7</fax> <guidername>sample string 2</guidername> <guidernumber>sample string 1</guidernumber> <languagetype>sample string 4</languagetype> <mailaddress>sample string 9</mailaddress> <memory>sample string 10</memory> <mobile>sample string 6</mobile> <phone>sample string 5</phone> <photo>sample string 11</photo> <sex>sample string 3</sex> </CrmGuiderAddParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.
Response Information
Resource Description
添加一个导游
CommonOperationResultName | Description | Type | Additional information |
---|---|---|---|
errcode |
错误代码,通常0表示成功,其他值表示错误。 |
integer |
None. |
errmsg |
错误描述,当errcode不为零时,此值可以用于呈现给用户。 |
string |
None. |
tag |
操作同时,服务器端需要返回的其他值。 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "errcode": 1, "errmsg": "sample string 2", "tag": "sample string 3" }
application/xml, text/xml
Sample:
<CommonOperationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer"> <errcode>1</errcode> <errmsg>sample string 2</errmsg> <tag>sample string 3</tag> </CommonOperationResult>
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.