POST api/hardware/get_hardware_category_list

Request Information

URI Parameters

None.

Body Parameters

hardware_category_request
NameDescriptionTypeAdditional information
token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "token": "sample string 1"
}

application/xml, text/xml

Sample:
<hardware_category_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <token>sample string 1</token>
</hardware_category_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

hardware_category_response
NameDescriptionTypeAdditional information
hardware_category_list

Collection of hardware_category_list

None.

success

boolean

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "hardware_category_list": [
    {
      "hardware_category_id": "sample string 1",
      "category_name": "sample string 2",
      "image_url": "sample string 3"
    },
    {
      "hardware_category_id": "sample string 1",
      "category_name": "sample string 2",
      "image_url": "sample string 3"
    }
  ],
  "success": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<hardware_category_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <hardware_category_list>
    <hardware_category_list>
      <category_name>sample string 2</category_name>
      <hardware_category_id>sample string 1</hardware_category_id>
      <image_url>sample string 3</image_url>
    </hardware_category_list>
    <hardware_category_list>
      <category_name>sample string 2</category_name>
      <hardware_category_id>sample string 1</hardware_category_id>
      <image_url>sample string 3</image_url>
    </hardware_category_list>
  </hardware_category_list>
  <message>sample string 2</message>
  <success>true</success>
</hardware_category_response>