POST api/scheduledtask/update

Request Information

URI Parameters

None.

Body Parameters

ScheduledTaskModel
NameDescriptionTypeAdditional information
SessionId

string

None.

Id

globally unique identifier

None.

RunTime

decimal number

None.

Status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SessionId": "sample string 1",
  "Id": "e8e5dfbe-7c96-4ab7-b334-97de51f9a8d0",
  "RunTime": 3.0,
  "Status": "sample string 4"
}

application/xml, text/xml

Sample:
<ScheduledTaskModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdminProAPI.Models">
  <Id>e8e5dfbe-7c96-4ab7-b334-97de51f9a8d0</Id>
  <RunTime>3</RunTime>
  <SessionId>sample string 1</SessionId>
  <Status>sample string 4</Status>
</ScheduledTaskModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

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