POST v2/tenantmember/{id}/associate/{tenantId}
Create a new External member in AppNotch. Special permissions are required for this call
Request Information
URI Parameters
Name | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | integer |
Member Id
Additional Info :
Required |
|||||||||||
tenantId | integer |
Tenant Id
Additional Info :
Required |
Body Parameters
Tenant Associate Member
TenantMemberAssociateRequestName | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
IsOwner | boolean |
Member security booldean value. If IsOwner set to true, this user can able to manage other users. |
Request Formats
{ "isOwner": true }
<TenantMemberAssociateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models"> <IsOwner>true</IsOwner> </TenantMemberAssociateRequest>
Response Information
Resource Description
TenantMemberResponseName | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Id | integer |
Id of the External Member |
|||||||||||
Name | string |
Name of the external member |
|||||||||||
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>