POST api/Account?sAccess={sAccess}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sAccess | string |
Required |
Body Parameters
SocialUserLoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserLoginId | string |
None. |
|
| SocialUserId | string |
None. |
|
| Password | string |
None. |
|
| IsNeedGetAvatar | boolean |
None. |
|
| IsNeedRegister | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserLoginId": "sample string 1",
"SocialUserId": "sample string 2",
"Password": "sample string 3",
"IsNeedGetAvatar": true,
"IsNeedRegister": true
}
application/xml, text/xml
Sample:
<SocialUserLoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ezy.APIService.Shared.Models"> <IsNeedGetAvatar>true</IsNeedGetAvatar> <IsNeedRegister>true</IsNeedRegister> <Password>sample string 3</Password> <SocialUserId>sample string 2</SocialUserId> <UserLoginId>sample string 1</UserLoginId> </SocialUserLoginModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |