POST api/ScreenConfig/Template

Add a new Screen Config Template

Request Information

URI Parameters

None.

Body Parameters

NewTemplateDTO
NameDescriptionTypeAdditional information
templateName

Template name

string

None.

entityType

Entity type to which template belongs

string

None.

clientCode

Client code

string

None.

Request Formats

application/json, text/json

Sample:
{
  "templateName": "sample string 1",
  "entityType": "sample string 2",
  "clientCode": "sample string 3"
}

text/xml

Sample:
<NewTemplateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <clientCode>sample string 3</clientCode>
  <entityType>sample string 2</entityType>
  <templateName>sample string 1</templateName>
</NewTemplateDTO>

multipart/form-data

Sample:
<NewTemplateDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><clientCode>sample string 3</clientCode><entityType>sample string 2</entityType><templateName>sample string 1</templateName></NewTemplateDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/xml, multipart/form-data

Sample:

Sample not available.