GET api/ThongBao/GetListThongBao?skip={skip}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
skip

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ThongBaoDto
NameDescriptionTypeAdditional information
Id

decimal number

None.

Type

TypeNotificationEnum

None.

TieuDe

string

None.

NoiDung

string

None.

DaDoc

boolean

None.

CreatedTime

date

None.

CreateTimeStr

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1.0,
    "Type": 0,
    "TieuDe": "sample string 2",
    "NoiDung": "sample string 3",
    "DaDoc": true,
    "CreatedTime": "2025-10-26T13:18:48.1801974+07:00",
    "CreateTimeStr": "sample string 6"
  },
  {
    "Id": 1.0,
    "Type": 0,
    "TieuDe": "sample string 2",
    "NoiDung": "sample string 3",
    "DaDoc": true,
    "CreatedTime": "2025-10-26T13:18:48.1801974+07:00",
    "CreateTimeStr": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfThongBaoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Dto.Common">
  <ThongBaoDto>
    <CreateTimeStr>sample string 6</CreateTimeStr>
    <CreatedTime>2025-10-26T13:18:48.1801974+07:00</CreatedTime>
    <DaDoc>true</DaDoc>
    <Id>1</Id>
    <NoiDung>sample string 3</NoiDung>
    <TieuDe>sample string 2</TieuDe>
    <Type>Default</Type>
  </ThongBaoDto>
  <ThongBaoDto>
    <CreateTimeStr>sample string 6</CreateTimeStr>
    <CreatedTime>2025-10-26T13:18:48.1801974+07:00</CreatedTime>
    <DaDoc>true</DaDoc>
    <Id>1</Id>
    <NoiDung>sample string 3</NoiDung>
    <TieuDe>sample string 2</TieuDe>
    <Type>Default</Type>
  </ThongBaoDto>
</ArrayOfThongBaoDto>