POST api/hardware/get_hardware_details
Request Information
URI Parameters
None.
Body Parameters
hardware_details_request| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| hardware_id | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"hardware_id": "sample string 2"
}
application/xml, text/xml
Sample:
<hardware_details_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models"> <hardware_id>sample string 2</hardware_id> <token>sample string 1</token> </hardware_details_request>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
hardware_details_response| Name | Description | Type | Additional information |
|---|---|---|---|
| hardware_details_data | hardware_details_list |
None. |
|
| success | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"hardware_details_data": {
"brand_name": "sample string 1",
"brand_id": "sample string 2",
"color": "sample string 3",
"category_name": "sample string 4",
"hardware_id": "sample string 5",
"hardware_name": "sample string 6",
"hardware_details": "sample string 7",
"image_url": "sample string 8"
},
"success": true,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<hardware_details_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
<hardware_details_data>
<brand_id>sample string 2</brand_id>
<brand_name>sample string 1</brand_name>
<category_name>sample string 4</category_name>
<color>sample string 3</color>
<hardware_details>sample string 7</hardware_details>
<hardware_id>sample string 5</hardware_id>
<hardware_name>sample string 6</hardware_name>
<image_url>sample string 8</image_url>
</hardware_details_data>
<message>sample string 2</message>
<success>true</success>
</hardware_details_response>