GET api/SIMS/GetWebCategoryInfo?companyKey={companyKey}

Gets all the records in the web category table in the database

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyKey

The company name if the service is connected to multiple SIMS companies (Optional)

string

Default value is

Body Parameters

N/A


Response Information

Resource Description

The records in the web category table

Collection of WebCategory
NameDescriptionTypeAdditional information
Iid

The ID of the record in the database

string

N/A

Description

The description of the web category

string

N/A

Parent

The parent of the web category

string

N/A

ItemOrd

The item order

string

N/A

ReplicId

The Replic ID of the record

string

N/A

Response Formats

application/json, text/json

Sample:
[
  {
    "Iid": "sample string 1",
    "Description": "sample string 2",
    "Parent": "sample string 3",
    "ItemOrd": "sample string 4",
    "ReplicId": "sample string 5"
  },
  {
    "Iid": "sample string 1",
    "Description": "sample string 2",
    "Parent": "sample string 3",
    "ItemOrd": "sample string 4",
    "ReplicId": "sample string 5"
  }
]