POST api/Values/ImageGetData

Request Information

URI Parameters

None.

Body Parameters

Image_Type_Master_Property
NameDescriptionTypeAdditional information
image_type_id

integer

None.

image_type_name

string

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:
{
  "image_type_id": 1,
  "image_type_name": "sample string 2",
  "active": 3,
  "sequence": 4,
  "entry_date": "sample string 5",
  "entry_time": "sample string 6",
  "ip_address": "sample string 7",
  "remarks": "sample string 8"
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Image_Master_Response
NameDescriptionTypeAdditional information
success

boolean

None.

msg

string

None.

data

Collection of Image_Type_Master_Property

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<Image_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_Type_Master_Property>
      <d2p1:active>3</d2p1:active>
      <d2p1:entry_date>sample string 5</d2p1:entry_date>
      <d2p1:entry_time>sample string 6</d2p1:entry_time>
      <d2p1:image_type_id>1</d2p1:image_type_id>
      <d2p1:image_type_name>sample string 2</d2p1:image_type_name>
      <d2p1:ip_address>sample string 7</d2p1:ip_address>
      <d2p1:remarks>sample string 8</d2p1:remarks>
      <d2p1:sequence>4</d2p1:sequence>
    </d2p1:Image_Type_Master_Property>
    <d2p1:Image_Type_Master_Property>
      <d2p1:active>3</d2p1:active>
      <d2p1:entry_date>sample string 5</d2p1:entry_date>
      <d2p1:entry_time>sample string 6</d2p1:entry_time>
      <d2p1:image_type_id>1</d2p1:image_type_id>
      <d2p1:image_type_name>sample string 2</d2p1:image_type_name>
      <d2p1:ip_address>sample string 7</d2p1:ip_address>
      <d2p1:remarks>sample string 8</d2p1:remarks>
      <d2p1:sequence>4</d2p1:sequence>
    </d2p1:Image_Type_Master_Property>
  </data>
  <msg>sample string 2</msg>
  <success>true</success>
</Image_Master_Response>