POST api/sysappsetup/save

Request Information

URI Parameters

None.

Body Parameters

EntSysAppSetup
NameDescriptionTypeAdditional information
RowNumber

string

None.

ID

integer

None.

KeyName

string

None.

KeyValue

string

None.

Remark

string

None.

CreateTime

date

None.

CreateBy

string

None.

EditTime

date

None.

EditBy

string

None.

PageSize

integer

None.

PageIndex

integer

None.

TotalCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "rowNumber": "sample string 1",
  "id": 2,
  "keyName": "sample string 3",
  "keyValue": "sample string 4",
  "remark": "sample string 5",
  "createTime": "2024-10-19 04:32:51",
  "createBy": "sample string 6",
  "editTime": "2024-10-19 04:32:51",
  "editBy": "sample string 7",
  "pageSize": 8,
  "pageIndex": 9,
  "totalCount": 10
}

application/xml, text/xml

Sample:
<EntSysAppSetup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <PageIndex>9</PageIndex>
  <PageSize>8</PageSize>
  <TotalCount>10</TotalCount>
  <CreateBy>sample string 6</CreateBy>
  <CreateTime>2024-10-19T04:32:51.1563143+08:00</CreateTime>
  <EditBy>sample string 7</EditBy>
  <EditTime>2024-10-19T04:32:51.1563143+08:00</EditTime>
  <ID>2</ID>
  <KeyName>sample string 3</KeyName>
  <KeyValue>sample string 4</KeyValue>
  <Remark>sample string 5</Remark>
  <RowNumber>sample string 1</RowNumber>
</EntSysAppSetup>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnResultOfInt32
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Data

integer

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "success": true,
  "data": 3,
  "message": "sample string 4"
}

application/xml, text/xml

Sample:
<ReturnResultOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <Data>3</Data>
  <Message>sample string 4</Message>
  <Status>1</Status>
  <Success>true</Success>
</ReturnResultOfint>