PUT 17.0/database/usertypepermissions/{usertypeid}/{groupid}/{itemid}

Description

Update existing User Type Permissions

URI Parameters

Name Description Type Additional information
userTypeID

integer

Required

groupID

string

Required

itemID

string

Required

Name Description Type Additional information
UserTypeID

integer

None.

GroupID

string

String length: inclusive between 0 and 50

ItemID

string

String length: inclusive between 0 and 50

Allowed

byte

None.

application/json, text/json

Sample:
{
  "userTypeID": 1,
  "groupID": "sample string 1",
  "itemID": "sample string 2",
  "allowed": 64
}

application/xml, text/xml

Sample:
<UserTypePermissionsUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UserTypeID>1</UserTypeID>
  <GroupID>sample string 1</GroupID>
  <ItemID>sample string 2</ItemID>
  <Allowed>64</Allowed>
</UserTypePermissionsUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
UserTypeID

integer

None.

GroupID

string

String length: inclusive between 0 and 50

ItemID

string

String length: inclusive between 0 and 50

Allowed

byte

None.

application/json, text/json

Sample:
{
  "userTypeID": 1,
  "groupID": "sample string 2",
  "itemID": "sample string 3",
  "allowed": 64
}

application/xml, text/xml

Sample:
<UserTypePermissions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UserTypeID>1</UserTypeID>
  <GroupID>sample string 2</GroupID>
  <ItemID>sample string 3</ItemID>
  <Allowed>64</Allowed>
</UserTypePermissions>