POST api/hardware/get_hardware_video

Request Information

URI Parameters

None.

Body Parameters

hardware_banner_video_request
NameDescriptionTypeAdditional 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_banner_video_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_banner_video_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

hardware_video_response
NameDescriptionTypeAdditional information
hardware_video_category

Collection of hardware_video_category

None.

success

boolean

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "hardware_video_category": [
    {
      "category": "sample string 1",
      "hardware_video_list": [
        {
          "video_id": "sample string 1",
          "title": "sample string 2"
        },
        {
          "video_id": "sample string 1",
          "title": "sample string 2"
        }
      ]
    },
    {
      "category": "sample string 1",
      "hardware_video_list": [
        {
          "video_id": "sample string 1",
          "title": "sample string 2"
        },
        {
          "video_id": "sample string 1",
          "title": "sample string 2"
        }
      ]
    }
  ],
  "success": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<hardware_video_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <hardware_video_category>
    <hardware_video_category>
      <category>sample string 1</category>
      <hardware_video_list>
        <hardware_video_list>
          <title>sample string 2</title>
          <video_id>sample string 1</video_id>
        </hardware_video_list>
        <hardware_video_list>
          <title>sample string 2</title>
          <video_id>sample string 1</video_id>
        </hardware_video_list>
      </hardware_video_list>
    </hardware_video_category>
    <hardware_video_category>
      <category>sample string 1</category>
      <hardware_video_list>
        <hardware_video_list>
          <title>sample string 2</title>
          <video_id>sample string 1</video_id>
        </hardware_video_list>
        <hardware_video_list>
          <title>sample string 2</title>
          <video_id>sample string 1</video_id>
        </hardware_video_list>
      </hardware_video_list>
    </hardware_video_category>
  </hardware_video_category>
  <message>sample string 2</message>
  <success>true</success>
</hardware_video_response>