POST v2/tenantmember/login/{appId}

Validates Login credentials from App

Request Information

URI Parameters

Name Type Description
appId integer
Additional Info :

Required

Body Parameters

LoginCredentials
Name Type Description
email string

Email Address

key string

Key

Request Formats

{
  "email": "sample string 1",
  "key": "sample string 2"
}
<LoginCredentials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Controllers">
  <email>sample string 1</email>
  <key>sample string 2</key>
</LoginCredentials>

Response Information

Resource Description

Single Tenant Member

TenantMemberResponse
Name Type Description
Id integer

Id of the External Member

Name string

Name of the external member

Email string

Email Address of the external member used also to login to the tenant admin

Phone string

Phone number that the member used when they register.

Response Formats

{
  "id": 1,
  "name": "sample string 2",
  "email": "sample string 3",
  "phone": "sample string 4"
}
<TenantMemberResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models">
  <Email>sample string 3</Email>
  <Id>1</Id>
  <Name>sample string 2</Name>
  <Phone>sample string 4</Phone>
</TenantMemberResponse>