GET V2/odata/Category

Gets Category entities

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of QicsUnity.Api.Areas.V2.Models.Category
NameDescriptionTypeAdditional information
CategoryId

Gets or sets category PK

integer

Required

64-bit signed integer

CategoryType

Gets or sets category type

QicsUnity.Common.BusinessObjects.CategoryType

Required

Name

Gets or sets the name of the category

string

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "CategoryId": "1",
    "CategoryType": "Customer",
    "Name": "sample 2"
  },
  {
    "CategoryId": "1",
    "CategoryType": "Customer",
    "Name": "sample 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V2.Models">
  <Category>
    <CategoryId>1</CategoryId>
    <CategoryType>Customer</CategoryType>
    <Name>sample 2</Name>
  </Category>
  <Category>
    <CategoryId>1</CategoryId>
    <CategoryType>Customer</CategoryType>
    <Name>sample 2</Name>
  </Category>
</ArrayOfCategory>