POST api/InternalGroups/SetUserCanAccessOthersTickets

Changes user can access others tickets.

Request Information

URI Parameters

None.

Body Parameters

SetUserCanAccessOthersTicketsPost
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": "d50b0040-54d3-4174-8c8d-00f163ebabfe",
  "CanAccessOthersTickets": true
}

application/xml, text/xml

Sample:
<SetUserCanAccessOthersTicketsPost 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>d50b0040-54d3-4174-8c8d-00f163ebabfe</UserProviderKey>
</SetUserCanAccessOthersTicketsPost>

Response Information

Resource Description

IHttpActionResult

None.