POST api/v1/Member/SetFacebookUser
Request Information
URI Parameters
None.
Body Parameters
UserFbLoginRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
String length: inclusive between 4 and 16 |
|
| Token | string |
None. |
|
| string |
None. |
||
| Name | string |
None. |
|
| Birth | string |
None. |
|
| Gender | string |
None. |
|
| Authority | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"Token": "sample string 2",
"Email": "sample string 3",
"Name": "sample string 4",
"Birth": "sample string 5",
"Gender": "sample string 6",
"Authority": 7
}
application/xml, text/xml
Sample:
<UserFbLoginRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/neosonyxlib.models.Context.Softnyx"> <Authority>7</Authority> <Birth>sample string 5</Birth> <Email>sample string 3</Email> <Gender>sample string 6</Gender> <Id>sample string 1</Id> <Name>sample string 4</Name> <Token>sample string 2</Token> </UserFbLoginRequest>
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>