POST api/moduleSettings/sortindexes

Updates module setting sort indexes.

Request Information

URI Parameters

None.

Body Parameters

The module setting indexes to update.

Collection of SortIndexDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

SortIndex

integer

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": "c2575339-f6ea-4a0d-9dd8-2e2193753e2a",
    "SortIndex": 2
  },
  {
    "Id": "c2575339-f6ea-4a0d-9dd8-2e2193753e2a",
    "SortIndex": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfSortIndexDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Settings.Models">
  <SortIndexDto>
    <Id>c2575339-f6ea-4a0d-9dd8-2e2193753e2a</Id>
    <SortIndex>2</SortIndex>
  </SortIndexDto>
  <SortIndexDto>
    <Id>c2575339-f6ea-4a0d-9dd8-2e2193753e2a</Id>
    <SortIndex>2</SortIndex>
  </SortIndexDto>
</ArrayOfSortIndexDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.