DELETE api/Token

Create an OAuth token, log off

Request Information

URI Parameters

None.

Body Parameters

a JSON or XML object contains MemberId and Password

AuthMemberModel
NameDescriptionTypeAdditional information
MemberId

Member Id (usually 4~5 numbers)

string

None.

Password

Member Login Password

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<AuthMemberModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AuEAuth_WebAPI.Models">
  <MemberId>sample string 1</MemberId>
  <Password>sample string 2</Password>
  <SubAccount>sample string 3</SubAccount>
</AuthMemberModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.