POST api/CustScheduler

Request Information

URI Parameters

None.

Body Parameters

CustSchedulerPostData
NameDescriptionTypeAdditional information
operationType

string

None.

Id

integer

None.

FK_CustMachineId

integer

None.

FK_CustProjectId

integer

None.

FromDate

date

None.

ToDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "operationType": "sample string 1",
  "Id": 2,
  "FK_CustMachineId": 3,
  "FK_CustProjectId": 4,
  "FromDate": "2025-12-13T09:11:39.8784953+00:00",
  "ToDate": "2025-12-13T09:11:39.8784953+00:00"
}

application/xml, text/xml

Sample:
<CustSchedulerPostData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses">
  <FK_CustMachineId>3</FK_CustMachineId>
  <FK_CustProjectId>4</FK_CustProjectId>
  <FromDate>2025-12-13T09:11:39.8784953+00:00</FromDate>
  <Id>2</Id>
  <ToDate>2025-12-13T09:11:39.8784953+00:00</ToDate>
  <operationType>sample string 1</operationType>
</CustSchedulerPostData>

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>