POST api/physicalexamination/ImportReport

Request Information

URI Parameters

None.

Body Parameters

ImportReportInfoModel
NameDescriptionTypeAdditional information
vendor_token

string

None.

customer_token

string

None.

status

string

None.

report_id

string

None.

report_name

string

None.

report_date

date

None.

file_type_id

string

None.

path

string

None.

path2

string

None.

items

Collection of ReportItemModel

None.

ReportSource

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "vendor_token": "sample string 1",
  "customer_token": "sample string 2",
  "status": "sample string 3",
  "report_id": "sample string 4",
  "report_name": "sample string 5",
  "report_date": "2025-11-06T05:16:28.8908002+08:00",
  "file_type_id": "sample string 7",
  "path": "sample string 8",
  "path2": "sample string 9",
  "items": [
    {
      "funitemid": "sample string 1",
      "funitemname": "sample string 2",
      "productid": "sample string 3",
      "productname": "sample string 4",
      "value": "sample string 5",
      "reference_value": "sample string 6",
      "is_abnormal": true,
      "other_abnormal_result": "sample string 8",
      "description": "sample string 9"
    },
    {
      "funitemid": "sample string 1",
      "funitemname": "sample string 2",
      "productid": "sample string 3",
      "productname": "sample string 4",
      "value": "sample string 5",
      "reference_value": "sample string 6",
      "is_abnormal": true,
      "other_abnormal_result": "sample string 8",
      "description": "sample string 9"
    }
  ],
  "ReportSource": 10
}

application/xml, text/xml

Sample:
<ImportReportInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/hvc_API.Models">
  <ReportSource>10</ReportSource>
  <customer_token>sample string 2</customer_token>
  <file_type_id>sample string 7</file_type_id>
  <items>
    <ReportItemModel>
      <description>sample string 9</description>
      <funitemid>sample string 1</funitemid>
      <funitemname>sample string 2</funitemname>
      <is_abnormal>true</is_abnormal>
      <other_abnormal_result>sample string 8</other_abnormal_result>
      <productid>sample string 3</productid>
      <productname>sample string 4</productname>
      <reference_value>sample string 6</reference_value>
      <value>sample string 5</value>
    </ReportItemModel>
    <ReportItemModel>
      <description>sample string 9</description>
      <funitemid>sample string 1</funitemid>
      <funitemname>sample string 2</funitemname>
      <is_abnormal>true</is_abnormal>
      <other_abnormal_result>sample string 8</other_abnormal_result>
      <productid>sample string 3</productid>
      <productname>sample string 4</productname>
      <reference_value>sample string 6</reference_value>
      <value>sample string 5</value>
    </ReportItemModel>
  </items>
  <path>sample string 8</path>
  <path2>sample string 9</path2>
  <report_date>2025-11-06T05:16:28.8908002+08:00</report_date>
  <report_id>sample string 4</report_id>
  <report_name>sample string 5</report_name>
  <status>sample string 3</status>
  <vendor_token>sample string 1</vendor_token>
</ImportReportInfoModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />