PUT api/OpsManagerTaskGroup?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

OpsManagerTaskGroupDTO
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerID

integer

None.

CustomerVenueID

integer

None.

SystemUserID

integer

None.

ClassTypeID

integer

None.

CustomerName

string

None.

VenueName

string

None.

SystemUserFullName

string

None.

ClassTypeName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CustomerID": 2,
  "CustomerVenueID": 3,
  "SystemUserID": 4,
  "ClassTypeID": 5,
  "CustomerName": "sample string 6",
  "VenueName": "sample string 7",
  "SystemUserFullName": "sample string 8",
  "ClassTypeName": "sample string 9"
}

application/xml, text/xml

Sample:
<OpsManagerTaskGroupDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <ClassTypeID>5</ClassTypeID>
  <ClassTypeName>sample string 9</ClassTypeName>
  <CustomerID>2</CustomerID>
  <CustomerName>sample string 6</CustomerName>
  <CustomerVenueID>3</CustomerVenueID>
  <ID>1</ID>
  <SystemUserFullName>sample string 8</SystemUserFullName>
  <SystemUserID>4</SystemUserID>
  <VenueName>sample string 7</VenueName>
</OpsManagerTaskGroupDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

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