POST api/ClausesTemplate

Add Clauses template

Request Information

URI Parameters

None.

Body Parameters

Clauses template

ClausesTemplateCreateDto
NameDescriptionTypeAdditional information
Title

string

None.

LanguageId

integer

None.

ProjectId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "title": "sample string 1",
  "languageId": 2,
  "projectId": 1
}

text/html

Sample:
{"title":"sample string 1","languageId":2,"projectId":1}

application/xml, text/xml

Sample:
<ClausesTemplateCreateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.ClausesTemplateAgg">
  <LanguageId>2</LanguageId>
  <ProjectId>1</ProjectId>
  <Title>sample string 1</Title>
</ClausesTemplateCreateDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json, text/html

Sample:
1

application/xml, text/xml

Sample:
<long xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</long>