GET categorygroups?Page={Page}&PageSize={PageSize}&NextPage={NextPage}&PreviousPage={PreviousPage}&FirstPage={FirstPage}&LastPage={LastPage}

Get all category groups. User Authorization Optional.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Page

The page number to return.

integer

None.

PageSize

The size of the page to return.

integer

None.

NextPage

Next page.

integer

None.

PreviousPage

Previous page.

integer

None.

FirstPage

First page.

integer

None.

LastPage

Last page.

integer

None.

Body Parameters

None.

Response Information

Resource Description

collection of category groups

ResponseCollectionOfCategoryGroup
NameDescriptionTypeAdditional information
Data

Collection of CategoryGroup

None.

Count

integer

None.

Data

CategoryGroup

None.

ResultType

ResultType

None.

Messages

Collection of string

None.

Links

Links

None.

ApiBaseUrl

string

None.

responseObjectType

string

None.

Response Formats

application/json, text/json

Sample:
{
  "count": 1,
  "resultType": {
    "code": 0,
    "message": "Success"
  },
  "messages": [
    "sample string 1",
    "sample string 2"
  ],
  "links": {},
  "apiBaseUrl": "sample string 2",
  "responseObjectType": "responseCollection<categoryGroup>"
}

application/xml, text/xml

Sample:
<ResponseCollection xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ApiBaseUrl>sample string 2</ApiBaseUrl>
  <Links>
    <First i:nil="true" />
    <Last i:nil="true" />
    <Next i:nil="true" />
    <Previous i:nil="true" />
    <Self i:nil="true" />
  </Links>
  <Messages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Messages>
  <ResultType>
    <Code>Success</Code>
    <Message>Success</Message>
  </ResultType>
  <responseObjectType>responseCollection&lt;categoryGroup&gt;</responseObjectType>
  <Data i:nil="true" />
  <Count>1</Count>
  <Data i:nil="true" />
</ResponseCollection>