POST api/FeedBack

Request Information

URI Parameters

None.

Body Parameters

FeedBack
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Origin

string

None.

Type

globally unique identifier

None.

Email

string

None.

Title

string

None.

Content

string

None.

RequestPerson

globally unique identifier

None.

InputDate

date

None.

IsReply

boolean

None.

ReplyContent

string

None.

ReplyDate

date

None.

RPUserID

string

None.

RPType

string

None.

RPUniversity

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "1a7943bd-d84d-45c8-8556-8928d80d2628",
  "Origin": "sample string 2",
  "Type": "2be3a7e0-bd53-4945-8833-6e417fdfc5bd",
  "Email": "sample string 3",
  "Title": "sample string 4",
  "Content": "sample string 5",
  "RequestPerson": "1890bd84-2776-4e22-aa2e-d996ef26c23f",
  "InputDate": "2026-07-21T04:15:45.8014586+08:00",
  "IsReply": true,
  "ReplyContent": "sample string 6",
  "ReplyDate": "2026-07-21T04:15:45.8014586+08:00",
  "RPUserID": "sample string 7",
  "RPType": "sample string 8",
  "RPUniversity": "dfb1bd73-7649-47f3-9109-abff8ead202c"
}

application/xml, text/xml

Sample:
<FeedBack xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EUSI.EUSIEntities">
  <Content>sample string 5</Content>
  <Email>sample string 3</Email>
  <Id>1a7943bd-d84d-45c8-8556-8928d80d2628</Id>
  <InputDate>2026-07-21T04:15:45.8014586+08:00</InputDate>
  <IsReply>true</IsReply>
  <Origin>sample string 2</Origin>
  <RPType>sample string 8</RPType>
  <RPUniversity>dfb1bd73-7649-47f3-9109-abff8ead202c</RPUniversity>
  <RPUserID>sample string 7</RPUserID>
  <ReplyContent>sample string 6</ReplyContent>
  <ReplyDate>2026-07-21T04:15:45.8014586+08:00</ReplyDate>
  <RequestPerson>1890bd84-2776-4e22-aa2e-d996ef26c23f</RequestPerson>
  <Title>sample string 4</Title>
  <Type>2be3a7e0-bd53-4945-8833-6e417fdfc5bd</Type>
</FeedBack>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

InsertResult
NameDescriptionTypeAdditional information
IsInsert

boolean

None.

ErrMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsInsert": true,
  "ErrMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<InsertResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EUSI.Models">
  <ErrMessage>sample string 2</ErrMessage>
  <IsInsert>true</IsInsert>
</InsertResult>