POST api/User/ValidateUserByTMID

Request Information

URI Parameters

None.

Body Parameters

CustomerFilterByTMIDDto
NameDescriptionTypeAdditional information
AccountId

globally unique identifier

None.

Email

string

None.

TMID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountId": "f8eca7db-d536-4aef-91c8-3c01aaf231b2",
  "Email": "sample string 2",
  "TMID": "sample string 3"
}

application/xml, text/xml

Sample:
<CustomerFilterByTMIDDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.UserModule.Model">
  <AccountId>f8eca7db-d536-4aef-91c8-3c01aaf231b2</AccountId>
  <Email>sample string 2</Email>
  <TMID>sample string 3</TMID>
</CustomerFilterByTMIDDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CustomerFilterByTMIDDto'.

Response Information

Resource Description

UserDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Username

string

None.

Password

string

None.

Role_Id

globally unique identifier

None.

RefId

globally unique identifier

None.

ErrorMessage

string

None.

Token

string

None.

NovaAPIId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "523b10c1-f3bd-4a03-9f49-94477fad68f9",
  "Username": "sample string 2",
  "Password": "sample string 3",
  "Role_Id": "aaaba848-fe0e-4b06-968b-76011a776ee4",
  "RefId": "168f923f-2e4e-4564-b34e-e6c15e8ecec3",
  "ErrorMessage": "sample string 4",
  "Token": "sample string 5",
  "NovaAPIId": "sample string 6"
}

application/xml, text/xml

Sample:
<UserDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.UserModule.Model">
  <ErrorMessage>sample string 4</ErrorMessage>
  <Id>523b10c1-f3bd-4a03-9f49-94477fad68f9</Id>
  <NovaAPIId>sample string 6</NovaAPIId>
  <Password>sample string 3</Password>
  <RefId>168f923f-2e4e-4564-b34e-e6c15e8ecec3</RefId>
  <Role_Id>aaaba848-fe0e-4b06-968b-76011a776ee4</Role_Id>
  <Token>sample string 5</Token>
  <Username>sample string 2</Username>
</UserDto>