POST api/Values/SubImageGetData

Request Information

URI Parameters

None.

Body Parameters

Image_Sub_Type_Master_Property
NameDescriptionTypeAdditional information
sub_image_type_id

integer

None.

sub_image_type_name

string

None.

image_type_id

integer

None.

active

integer

None.

sequence

integer

None.

entry_date

string

None.

entry_time

string

None.

ip_address

string

None.

remarks

string

None.

Request Formats

application/json, text/json

Sample:
{
  "sub_image_type_id": 1,
  "sub_image_type_name": "sample string 2",
  "image_type_id": 3,
  "active": 4,
  "sequence": 5,
  "entry_date": "sample string 6",
  "entry_time": "sample string 7",
  "ip_address": "sample string 8",
  "remarks": "sample string 9"
}

application/xml, text/xml

Sample:
<Image_Sub_Type_Master_Property xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master">
  <active>4</active>
  <entry_date>sample string 6</entry_date>
  <entry_time>sample string 7</entry_time>
  <image_type_id>3</image_type_id>
  <ip_address>sample string 8</ip_address>
  <remarks>sample string 9</remarks>
  <sequence>5</sequence>
  <sub_image_type_id>1</sub_image_type_id>
  <sub_image_type_name>sample string 2</sub_image_type_name>
</Image_Sub_Type_Master_Property>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SubImage_Master_Response
NameDescriptionTypeAdditional information
success

boolean

None.

msg

string

None.

data

Collection of Image_Sub_Type_Master_Property

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "msg": "sample string 2",
  "data": [
    {
      "sub_image_type_id": 1,
      "sub_image_type_name": "sample string 2",
      "image_type_id": 3,
      "active": 4,
      "sequence": 5,
      "entry_date": "sample string 6",
      "entry_time": "sample string 7",
      "ip_address": "sample string 8",
      "remarks": "sample string 9"
    },
    {
      "sub_image_type_id": 1,
      "sub_image_type_name": "sample string 2",
      "image_type_id": 3,
      "active": 4,
      "sequence": 5,
      "entry_date": "sample string 6",
      "entry_time": "sample string 7",
      "ip_address": "sample string 8",
      "remarks": "sample string 9"
    }
  ]
}

application/xml, text/xml

Sample:
<SubImage_Master_Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.FunctionClasses.Response">
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BLL.PropertyClasses.Master">
    <d2p1:Image_Sub_Type_Master_Property>
      <d2p1:active>4</d2p1:active>
      <d2p1:entry_date>sample string 6</d2p1:entry_date>
      <d2p1:entry_time>sample string 7</d2p1:entry_time>
      <d2p1:image_type_id>3</d2p1:image_type_id>
      <d2p1:ip_address>sample string 8</d2p1:ip_address>
      <d2p1:remarks>sample string 9</d2p1:remarks>
      <d2p1:sequence>5</d2p1:sequence>
      <d2p1:sub_image_type_id>1</d2p1:sub_image_type_id>
      <d2p1:sub_image_type_name>sample string 2</d2p1:sub_image_type_name>
    </d2p1:Image_Sub_Type_Master_Property>
    <d2p1:Image_Sub_Type_Master_Property>
      <d2p1:active>4</d2p1:active>
      <d2p1:entry_date>sample string 6</d2p1:entry_date>
      <d2p1:entry_time>sample string 7</d2p1:entry_time>
      <d2p1:image_type_id>3</d2p1:image_type_id>
      <d2p1:ip_address>sample string 8</d2p1:ip_address>
      <d2p1:remarks>sample string 9</d2p1:remarks>
      <d2p1:sequence>5</d2p1:sequence>
      <d2p1:sub_image_type_id>1</d2p1:sub_image_type_id>
      <d2p1:sub_image_type_name>sample string 2</d2p1:sub_image_type_name>
    </d2p1:Image_Sub_Type_Master_Property>
  </data>
  <msg>sample string 2</msg>
  <success>true</success>
</SubImage_Master_Response>