POST api/Member/Authenticate

Request Information

URI Parameters

None.

Body Parameters

AuthenticationInput
NameDescriptionTypeAdditional information
Username

string

Required

Password

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2"
}

application/xml, text/xml

Sample:
<AuthenticationInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.Base.WebAPI.Models">
  <Password>sample string 2</Password>
  <Username>sample string 1</Username>
</AuthenticationInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AuthenticateResponseModel
NameDescriptionTypeAdditional information
EntityId

integer

None.

Gender

string

None.

IsDependent

boolean

None.

Url

string

None.

Token

string

None.

profitRegion

string

None.

IsAuthenticated

boolean

None.

UserInfo

SysUserData

None.

AuthenticationToken

string

None.

SessionId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EntityId": 1,
  "Gender": "sample string 2",
  "IsDependent": true,
  "Url": "sample string 4",
  "Token": "sample string 5",
  "profitRegion": "sample string 6",
  "IsAuthenticated": true,
  "UserInfo": null,
  "AuthenticationToken": "sample string 8",
  "SessionId": "sample string 9"
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.