POST api/InternalGroups/AddUserToInternalGroup

Adds user to internal group.

Request Information

URI Parameters

None.

Body Parameters

AddUserToInternalGroupPost
NameDescriptionTypeAdditional information
InternalGroupId

(Require) The Internal group Id

integer

None.

UserProviderKey

(Require) The user id

string

None.

CanAccessOthersTickets

True if user can access others tickets

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "InternalGroupId": 1,
  "UserProviderKey": "d79f111d-d41c-4559-b612-e1a79191213c",
  "CanAccessOthersTickets": true
}

application/xml, text/xml

Sample:
<AddUserToInternalGroupPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <CanAccessOthersTickets>true</CanAccessOthersTickets>
  <InternalGroupId>1</InternalGroupId>
  <UserProviderKey>d79f111d-d41c-4559-b612-e1a79191213c</UserProviderKey>
</AddUserToInternalGroupPost>

Response Information

Resource Description

IHttpActionResult

None.