POST api/v1/Member/SetUserInfo
Request Information
URI Parameters
None.
Body Parameters
DaoUserInfoSet| Name | Description | Type | Additional information |
|---|---|---|---|
| _id | string |
Required String length: inclusive between 4 and 16 |
|
| _email | string |
Required Matching regular expression pattern: \A(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)\Z String length: inclusive between 0 and 70 |
|
| _name | string |
Required String length: inclusive between 0 and 20 |
|
| _birth | string |
Required String length: inclusive between 0 and 10 |
|
| _country | string |
Required String length: inclusive between 0 and 30 |
|
| _mailyn | string |
Required |
|
| _recommendid | string |
String length: inclusive between 0 and 16 |
|
| _questionNo | string |
Required String length: inclusive between 0 and 6 |
|
| _question | string |
String length: inclusive between 0 and 300 |
|
| _answer | string |
None. |
|
| _resetyn | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"_id": "sample string 1",
"_email": "sample string 2",
"_name": "sample string 3",
"_birth": "sample string 4",
"_country": "sample string 5",
"_mailyn": "sample string 6",
"_recommendid": "sample string 7",
"_questionNo": "sample string 8",
"_question": "sample string 9",
"_answer": "sample string 10",
"_resetyn": "sample string 11"
}
application/xml, text/xml
Sample:
<DaoUserInfoSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models.DAO.Softnyx"> <_answer>sample string 10</_answer> <_birth>sample string 4</_birth> <_country>sample string 5</_country> <_email>sample string 2</_email> <_id>sample string 1</_id> <_mailyn>sample string 6</_mailyn> <_name>sample string 3</_name> <_question>sample string 9</_question> <_questionNo>sample string 8</_questionNo> <_recommendid>sample string 7</_recommendid> <_resetyn>sample string 11</_resetyn> </DaoUserInfoSet>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| code | ResultCode |
None. |
|
| Message | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 0,
"Message": {}
}
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models"> <Code>Fail</Code> <Message /> </APIResult>