GET api/ac_type?AC_TYPE_ID={AC_TYPE_ID}&DbName={DbName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AC_TYPE_ID

integer

None.

DbName

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ac_type
NameDescriptionTypeAdditional information
AC_TYPE_NM

string

None.

AC_TYPE_ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AC_TYPE_NM": "sample string 1",
    "AC_TYPE_ID": 1
  },
  {
    "AC_TYPE_NM": "sample string 1",
    "AC_TYPE_ID": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfac_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControllerLibrary">
  <ac_type>
    <AC_TYPE_ID>1</AC_TYPE_ID>
    <AC_TYPE_NM>sample string 1</AC_TYPE_NM>
  </ac_type>
  <ac_type>
    <AC_TYPE_ID>1</AC_TYPE_ID>
    <AC_TYPE_NM>sample string 1</AC_TYPE_NM>
  </ac_type>
</ArrayOfac_type>