GET v2/tenantmember/{id}

Retrieves a specific member that has access to the tenant using the Member Id. Returns Not Found if it does not have any information to return

Request Information

URI Parameters

Name Type Description
id integer

Member Id to fetch

Additional Info :

Required

Body Parameters

None.

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>