GET api/BasicContent/getContent?group_id={group_id}&package_id={package_id}&category_id={category_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
group_id

integer

Required

package_id

integer

Required

category_id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TBL_SERVICE_CONTENT
NameDescriptionTypeAdditional information
FLD_SR

integer

None.

FLD_SERVICE_ID

integer

None.

FLD_KEY

string

None.

FLD_CATAGORY

integer

None.

FLD_CONTENT

string

None.

FLD_DATETIME

string

None.

FLD_USER_ID

integer

None.

FLD_NOTES

string

None.

fld_group_id

integer

None.

fld_package_id

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FLD_SR": 1,
    "FLD_SERVICE_ID": 2,
    "FLD_KEY": "sample string 3",
    "FLD_CATAGORY": 1,
    "FLD_CONTENT": "sample string 4",
    "FLD_DATETIME": "sample string 5",
    "FLD_USER_ID": 1,
    "FLD_NOTES": "sample string 6",
    "fld_group_id": 1,
    "fld_package_id": 1
  },
  {
    "FLD_SR": 1,
    "FLD_SERVICE_ID": 2,
    "FLD_KEY": "sample string 3",
    "FLD_CATAGORY": 1,
    "FLD_CONTENT": "sample string 4",
    "FLD_DATETIME": "sample string 5",
    "FLD_USER_ID": 1,
    "FLD_NOTES": "sample string 6",
    "fld_group_id": 1,
    "fld_package_id": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfTBL_SERVICE_CONTENT xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoetAPI.Models">
  <TBL_SERVICE_CONTENT>
    <FLD_CATAGORY>1</FLD_CATAGORY>
    <FLD_CONTENT>sample string 4</FLD_CONTENT>
    <FLD_DATETIME>sample string 5</FLD_DATETIME>
    <FLD_KEY>sample string 3</FLD_KEY>
    <FLD_NOTES>sample string 6</FLD_NOTES>
    <FLD_SERVICE_ID>2</FLD_SERVICE_ID>
    <FLD_SR>1</FLD_SR>
    <FLD_USER_ID>1</FLD_USER_ID>
    <fld_group_id>1</fld_group_id>
    <fld_package_id>1</fld_package_id>
  </TBL_SERVICE_CONTENT>
  <TBL_SERVICE_CONTENT>
    <FLD_CATAGORY>1</FLD_CATAGORY>
    <FLD_CONTENT>sample string 4</FLD_CONTENT>
    <FLD_DATETIME>sample string 5</FLD_DATETIME>
    <FLD_KEY>sample string 3</FLD_KEY>
    <FLD_NOTES>sample string 6</FLD_NOTES>
    <FLD_SERVICE_ID>2</FLD_SERVICE_ID>
    <FLD_SR>1</FLD_SR>
    <FLD_USER_ID>1</FLD_USER_ID>
    <fld_group_id>1</fld_group_id>
    <fld_package_id>1</fld_package_id>
  </TBL_SERVICE_CONTENT>
</ArrayOfTBL_SERVICE_CONTENT>