POST api/BECorporate/ReplyQuote

Request Information

URI Parameters

None.

Body Parameters

QuoteReplyData
NameDescriptionTypeAdditional information
Code

string

None.

QuoteStatus

string

None.

QuoteDateTime

date

None.

ReplyNote

string

None.

WasteData

Collection of QuoteReplyWastePrice

None.

ProvideEquip

Collection of QuoteEquip

None.

AcceptableAmount

decimal number

None.

UP_UserId

string

None.

SendMail

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Code": "sample string 1",
  "QuoteStatus": "sample string 2",
  "QuoteDateTime": "2026-04-21 17:41:01",
  "ReplyNote": "sample string 3",
  "WasteData": [
    {
      "WasteCode": "sample string 1",
      "Price": 1.0,
      "SubscriptionPrice": 1.0,
      "OverPrice": 1.0,
      "BucketWeight": 1.0
    },
    {
      "WasteCode": "sample string 1",
      "Price": 1.0,
      "SubscriptionPrice": 1.0,
      "OverPrice": 1.0,
      "BucketWeight": 1.0
    }
  ],
  "ProvideEquip": [
    {
      "QuoteProvideEquip": "sample string 1",
      "QuoteProvideEquipName": "sample string 2",
      "Qty": 3,
      "Price": 4.0
    },
    {
      "QuoteProvideEquip": "sample string 1",
      "QuoteProvideEquipName": "sample string 2",
      "Qty": 3,
      "Price": 4.0
    }
  ],
  "AcceptableAmount": 1.0,
  "UP_UserId": "sample string 4",
  "SendMail": true
}

application/xml, text/xml

Sample:
<QuoteModel.QuoteReplyData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRMS.Models">
  <AcceptableAmount>1</AcceptableAmount>
  <Code>sample string 1</Code>
  <ProvideEquip>
    <QuoteModel.QuoteEquip>
      <Price>4</Price>
      <Qty>3</Qty>
      <QuoteProvideEquip>sample string 1</QuoteProvideEquip>
      <QuoteProvideEquipName>sample string 2</QuoteProvideEquipName>
    </QuoteModel.QuoteEquip>
    <QuoteModel.QuoteEquip>
      <Price>4</Price>
      <Qty>3</Qty>
      <QuoteProvideEquip>sample string 1</QuoteProvideEquip>
      <QuoteProvideEquipName>sample string 2</QuoteProvideEquipName>
    </QuoteModel.QuoteEquip>
  </ProvideEquip>
  <QuoteDateTime>2026-04-21T17:41:01.5529628+08:00</QuoteDateTime>
  <QuoteStatus>sample string 2</QuoteStatus>
  <ReplyNote>sample string 3</ReplyNote>
  <SendMail>true</SendMail>
  <UP_UserId>sample string 4</UP_UserId>
  <WasteData>
    <QuoteModel.QuoteReplyWastePrice>
      <BucketWeight>1</BucketWeight>
      <OverPrice>1</OverPrice>
      <Price>1</Price>
      <SubscriptionPrice>1</SubscriptionPrice>
      <WasteCode>sample string 1</WasteCode>
    </QuoteModel.QuoteReplyWastePrice>
    <QuoteModel.QuoteReplyWastePrice>
      <BucketWeight>1</BucketWeight>
      <OverPrice>1</OverPrice>
      <Price>1</Price>
      <SubscriptionPrice>1</SubscriptionPrice>
      <WasteCode>sample string 1</WasteCode>
    </QuoteModel.QuoteReplyWastePrice>
  </WasteData>
</QuoteModel.QuoteReplyData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResultOfObject
NameDescriptionTypeAdditional information
body

Object

None.

isSuccess

boolean

None.

message

string

None.

code

string

None.

response

Enum

None.

exception

string

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<BaseModels.BaseResultOfanyTypeRvdAXEcW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRMS.Models">
  <body />
  <exception>sample string 3</exception>
  <isSuccess>true</isSuccess>
  <response i:nil="true" />
</BaseModels.BaseResultOfanyTypeRvdAXEcW>