POST v01/members/checklogin?username={username}&password={password}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

password

string

Required

Body Parameters

None.

Response Information

Resource Description

UserLoginDto
NameDescriptionTypeAdditional information
userid

globally unique identifier

None.

countryIso

string

None.

Response Formats

application/json, text/json

Sample:
{
  "userid": "b87bcf62-5361-4166-b9e8-8cbb6a5ef276",
  "countryIso": "sample string 2"
}

application/xml, text/xml

Sample:
<UserLoginDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClubCityApi.Models">
  <countryIso>sample string 2</countryIso>
  <userid>b87bcf62-5361-4166-b9e8-8cbb6a5ef276</userid>
</UserLoginDto>