POST api/admin/editTempFromAdminApp?id={id}&text={text}&key={key}&superId={superId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

text

string

Required

key

string

Required

superId

integer

Required

Body Parameters

None.

Response Information

Resource Description

tbl_temp_content
NameDescriptionTypeAdditional information
fld_id

integer

None.

fld_content

string

None.

fld_key

string

None.

fld_group_id

integer

None.

fld_package_id

integer

None.

fld_category_id

integer

None.

fld_user_id

integer

None.

fd_status

integer

None.

fld_status

string

None.

fld_creationDate

string

None.

fld_comment

string

None.

fld_reply

string

None.

alteredCount

integer

None.

supervisor_id

integer

None.

fld_lastModified

integer

None.

syncWithPoet

boolean

None.

syncWithSupervisor

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "fld_id": 1,
  "fld_content": "sample string 2",
  "fld_key": "sample string 3",
  "fld_group_id": 4,
  "fld_package_id": 5,
  "fld_category_id": 6,
  "fld_user_id": 7,
  "fd_status": 8,
  "fld_status": "sample string 9",
  "fld_creationDate": "sample string 10",
  "fld_comment": "sample string 11",
  "fld_reply": "sample string 12",
  "alteredCount": 13,
  "supervisor_id": 14,
  "fld_lastModified": 15,
  "syncWithPoet": true,
  "syncWithSupervisor": true
}

application/xml, text/xml

Sample:
<tbl_temp_content xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PoetAPI.Models">
  <alteredCount>13</alteredCount>
  <fd_status>8</fd_status>
  <fld_category_id>6</fld_category_id>
  <fld_comment>sample string 11</fld_comment>
  <fld_content>sample string 2</fld_content>
  <fld_creationDate>sample string 10</fld_creationDate>
  <fld_group_id>4</fld_group_id>
  <fld_id>1</fld_id>
  <fld_key>sample string 3</fld_key>
  <fld_lastModified>15</fld_lastModified>
  <fld_package_id>5</fld_package_id>
  <fld_reply>sample string 12</fld_reply>
  <fld_status>sample string 9</fld_status>
  <fld_user_id>7</fld_user_id>
  <supervisor_id>14</supervisor_id>
  <syncWithPoet>true</syncWithPoet>
  <syncWithSupervisor>true</syncWithSupervisor>
</tbl_temp_content>