POST api/v2.0/Communities/AcceptInvitation
Accept an invitation to a Community.
Request Information
URI Parameters
None.
Body Parameters
Data defining the Community Invitation to Accept. Currently comprised of the CommunityInvitationKey.
CommunityInvitationRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| CommunityInvitationKey | globally unique identifier | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "CommunityInvitationKey": "98976391-eb6b-41e0-95aa-5f3473c992f9"
}
        application/xml, text/xml
            Sample:
<CommunityInvitationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Request"> <CommunityInvitationKey>98976391-eb6b-41e0-95aa-5f3473c992f9</CommunityInvitationKey> </CommunityInvitationRequest>
Response Information
Resource Description
Boolean indicating success or failure of the Invitation Acceptance.
Collection of booleanResponse Formats
application/json, text/json
            Sample:
        [ true, true ]
application/xml, text/xml
            Sample:
<ArrayOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <boolean>true</boolean> <boolean>true</boolean> </ArrayOfboolean>