POST api/InternalGroups/AddUserToInternalGroup
Adds user to internal group.
Request Information
URI Parameters
None.
Body Parameters
AddUserToInternalGroupPostName | Description | Type | Additional 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": "b4f6c76e-c287-4c89-8b07-589861e0b26f", "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>b4f6c76e-c287-4c89-8b07-589861e0b26f</UserProviderKey> </AddUserToInternalGroupPost>
Response Information
Resource Description
IHttpActionResultNone.