POST api/email-template/reset

Request Information

URI Parameters

None.

Body Parameters

EmailTemplateSaveRequest
NameDescriptionTypeAdditional information
SEQ_NO

integer

None.

USER_SEQ

integer

None.

TOKEN_NO

string

None.

SUBJECT

string

None.

BODY

string

None.

FOOTER

string

None.

IS_ACTIVE

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "SEQ_NO": 1,
  "USER_SEQ": 2,
  "TOKEN_NO": "sample string 3",
  "SUBJECT": "sample string 4",
  "BODY": "sample string 5",
  "FOOTER": "sample string 6",
  "IS_ACTIVE": true
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EmailTemplateSaveRequest'.

Response Information

Resource Description

ResponseMessage
NameDescriptionTypeAdditional information
STATUS

string

None.

MESSAGE

string

None.

VALUE

string

None.

Response Formats

application/json, text/json

Sample:
{
  "STATUS": "sample string 1",
  "MESSAGE": "sample string 2",
  "VALUE": "sample string 3"
}