POST api/Schedule/LoadAllTemplateList

Request Information

URI Parameters

None.

Body Parameters

TemplateViewMpdel
NameDescriptionTypeAdditional information
templatemasterid

integer

None.

templatebody

string

None.

templatetypeid

integer

None.

templatekey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "templatemasterid": 1,
  "templatebody": "sample string 2",
  "templatetypeid": 3,
  "templatekey": "sample string 4"
}

application/xml, text/xml

Sample:
<TemplateViewMpdel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/atulsalesdocs_api.Models">
  <templatebody>sample string 2</templatebody>
  <templatekey>sample string 4</templatekey>
  <templatemasterid>1</templatemasterid>
  <templatetypeid>3</templatetypeid>
</TemplateViewMpdel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResultViewModel
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

data

Object

None.

errorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "data": {},
  "errorCode": 4
}

application/xml, text/xml

Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/atulsalesdocs_api.Models">
  <data />
  <errorCode>4</errorCode>
  <message>sample string 2</message>
  <status>true</status>
</HttpResultViewModel>