POST api/MergePageUserType

Request Information

URI Parameters

None.

Body Parameters

Collection of PageUserType
NameDescriptionTypeAdditional information
UserTypeID

integer

None.

PageRightID

integer

None.

PageName

string

None.

Access

boolean

None.

Color

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "UserTypeID": 1,
    "PageRightID": 2,
    "PageName": "sample string 3",
    "Access": true,
    "Color": "sample string 5"
  },
  {
    "UserTypeID": 1,
    "PageRightID": 2,
    "PageName": "sample string 3",
    "Access": true,
    "Color": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPageUserType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MainService.Models">
  <PageUserType>
    <Access>true</Access>
    <Color>sample string 5</Color>
    <PageName>sample string 3</PageName>
    <PageRightID>2</PageRightID>
    <UserTypeID>1</UserTypeID>
  </PageUserType>
  <PageUserType>
    <Access>true</Access>
    <Color>sample string 5</Color>
    <PageName>sample string 3</PageName>
    <PageRightID>2</PageRightID>
    <UserTypeID>1</UserTypeID>
  </PageUserType>
</ArrayOfPageUserType>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>