PUT 17.0/database/tasktemplates/{id}

Description

Update existing Task Templates

URI Parameters

Name Description Type Additional information
id

integer

Required

Name Description Type Additional information
ID

integer

None.

Description

string

String length: inclusive between 0 and 30

Subject

string

String length: inclusive between 0 and 255

Body

string

None.

TaskTypeID

integer

None.

InActive

byte

None.

application/json, text/json

Sample:
{
  "id": 1,
  "description": "sample string 1",
  "subject": "sample string 2",
  "body": "sample string 3",
  "taskTypeID": 1,
  "inActive": 64
}

application/xml, text/xml

Sample:
<TaskTemplatesUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <Description>sample string 1</Description>
  <Subject>sample string 2</Subject>
  <Body>sample string 3</Body>
  <TaskTypeID>1</TaskTypeID>
  <InActive>64</InActive>
</TaskTemplatesUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
ID

integer

None.

Description

string

String length: inclusive between 0 and 30

Subject

string

String length: inclusive between 0 and 255

Body

string

None.

TaskTypeID

integer

None.

InActive

byte

None.

application/json, text/json

Sample:
{
  "id": 1,
  "description": "sample string 2",
  "subject": "sample string 3",
  "body": "sample string 4",
  "taskTypeID": 5,
  "inActive": 64
}

application/xml, text/xml

Sample:
<TaskTemplates xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ID>1</ID>
  <Description>sample string 2</Description>
  <Subject>sample string 3</Subject>
  <Body>sample string 4</Body>
  <TaskTypeID>5</TaskTypeID>
  <InActive>64</InActive>
</TaskTemplates>