GET api/ManageHeaders/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

tbl_list_header
NameDescriptionTypeAdditional information
Id

integer

None.

header_name

string

None.

header_type

string

None.

header_status

boolean

None.

create_date

date

None.

create_user

string

None.

IsTrial

boolean

None.

IsStandard

boolean

None.

IsPro

boolean

None.

IsPlatinum

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "header_name": "sample string 2",
  "header_type": "sample string 3",
  "header_status": true,
  "create_date": "2025-10-13T06:55:34.0862036+07:00",
  "create_user": "sample string 4",
  "IsTrial": true,
  "IsStandard": true,
  "IsPro": true,
  "IsPlatinum": true
}

application/xml, text/xml

Sample:
<tbl_list_header xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APISMS.Models">
  <Id>1</Id>
  <IsPlatinum>true</IsPlatinum>
  <IsPro>true</IsPro>
  <IsStandard>true</IsStandard>
  <IsTrial>true</IsTrial>
  <create_date>2025-10-13T06:55:34.0862036+07:00</create_date>
  <create_user>sample string 4</create_user>
  <header_name>sample string 2</header_name>
  <header_status>true</header_status>
  <header_type>sample string 3</header_type>
</tbl_list_header>