POST api/sitecustomerapi/add?siteId={siteId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

globally unique identifier

None.

Body Parameters

SiteCustomerViewModel
NameDescriptionTypeAdditional information
active

boolean

Required

code

integer

Required

delay_between_scans

integer

None.

id

globally unique identifier

None.

name

string

Required

String length: inclusive between 0 and 100

remark

string

None.

site_id

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "active": true,
  "code": 2,
  "delay_between_scans": 1,
  "id": "cca8b2c8-789b-4d7e-a194-6b41b05d8d8f",
  "name": "sample string 4",
  "remark": "sample string 5",
  "site_id": "4aaca6d4-9253-44cf-92a7-e2ceb9aae20e"
}

application/xml, text/xml

Sample:
<sitecustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <active>true</active>
  <code>2</code>
  <delay_between_scans>1</delay_between_scans>
  <id>cca8b2c8-789b-4d7e-a194-6b41b05d8d8f</id>
  <name>sample string 4</name>
  <remark>sample string 5</remark>
  <site_id>4aaca6d4-9253-44cf-92a7-e2ceb9aae20e</site_id>
</sitecustomer>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

globally unique identifier

Response Formats

application/json, text/json

Sample:
"62c8d5eb-8a7d-4633-a9d0-0f5bbcad228e"

application/xml, text/xml

Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">62c8d5eb-8a7d-4633-a9d0-0f5bbcad228e</guid>