GET api/FormNote/GetAllWithOrderIdFormNote?OrderId={OrderId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
OrderId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FormNoteDTO
NameDescriptionTypeAdditional information
id

integer

None.

description

string

None.

agentsId

integer

None.

orderId

string

None.

registerTime

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "description": "sample string 2",
    "agentsId": 3,
    "orderId": "sample string 4",
    "registerTime": "2026-09-04T02:48:39.4390577-07:00"
  },
  {
    "id": 1,
    "description": "sample string 2",
    "agentsId": 3,
    "orderId": "sample string 4",
    "registerTime": "2026-09-04T02:48:39.4390577-07:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFormNoteDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
  <FormNoteDTO>
    <agentsId>3</agentsId>
    <description>sample string 2</description>
    <id>1</id>
    <orderId>sample string 4</orderId>
    <registerTime>2026-09-04T02:48:39.4390577-07:00</registerTime>
  </FormNoteDTO>
  <FormNoteDTO>
    <agentsId>3</agentsId>
    <description>sample string 2</description>
    <id>1</id>
    <orderId>sample string 4</orderId>
    <registerTime>2026-09-04T02:48:39.4390577-07:00</registerTime>
  </FormNoteDTO>
</ArrayOfFormNoteDTO>