POST api/batchapi/add/endcleaningstep?siteId={siteId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

globally unique identifier

Required

Body Parameters

BatchEndCleaningStepViewModel
NameDescriptionTypeAdditional information
id

globally unique identifier

Required

status_temp

boolean

None.

status_temp_mode

string

Required

status_dosage

boolean

None.

status_dosage_mode

string

Required

status_reset

boolean

Required

status_reset_mode

string

Required

status_ph

boolean

None.

status_ph_mode

string

Required

Request Formats

application/json, text/json

Sample:
{
  "id": "516884a5-600a-45e4-9dd1-20d8a5f3e708",
  "status_temp": true,
  "status_temp_mode": "sample string 2",
  "status_dosage": true,
  "status_dosage_mode": "sample string 3",
  "status_reset": true,
  "status_reset_mode": "sample string 4",
  "status_ph": true,
  "status_ph_mode": "sample string 5"
}

application/xml, text/xml

Sample:
<batch_end_cleaning_step xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <id>516884a5-600a-45e4-9dd1-20d8a5f3e708</id>
  <status_dosage>true</status_dosage>
  <status_dosage_mode>sample string 3</status_dosage_mode>
  <status_ph>true</status_ph>
  <status_ph_mode>sample string 5</status_ph_mode>
  <status_reset>true</status_reset>
  <status_reset_mode>sample string 4</status_reset_mode>
  <status_temp>true</status_temp>
  <status_temp_mode>sample string 2</status_temp_mode>
</batch_end_cleaning_step>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

globally unique identifier

Response Formats

application/json, text/json

Sample:
"ea78fbc6-fdbb-4510-9952-ca101d82b345"

application/xml, text/xml

Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">ea78fbc6-fdbb-4510-9952-ca101d82b345</guid>