GET v2/apps/{appId}/tenants/{tenantId}/members

Retrieves all members that has access to the tenant. Returns Not Found if it does not have any information to return

Request Information

URI Parameters

Name Type Description
appId integer

Application Id

Additional Info :

Required

tenantId integer

Tenant Id to fetch the members for

Additional Info :

Required

Body Parameters

None.

Response Information

Resource Description

List of tenant members

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