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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteId

globally unique identifier

None.

Body Parameters

WitnessViewModel
NameDescriptionTypeAdditional information
active

boolean

Required

code

integer

Required

id

globally unique identifier

None.

date_hu

date

None.

local_update

date

None.

site_id

globally unique identifier

Required

status

integer

None.

wash_count

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "active": true,
  "code": 2,
  "id": "f8830362-2040-440f-97ae-6bbab3c913ab",
  "date_hu": "2026-01-19T11:26:06.5453422+00:00",
  "local_update": "2026-01-19T11:26:06.5453422+00:00",
  "site_id": "b56368af-6a41-4164-8fa2-87e9fdbd4c9a",
  "status": 1,
  "wash_count": 1
}

application/xml, text/xml

Sample:
<witness xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <active>true</active>
  <code>2</code>
  <date_hu>2026-01-19T11:26:06.5453422+00:00</date_hu>
  <id>f8830362-2040-440f-97ae-6bbab3c913ab</id>
  <local_update>2026-01-19T11:26:06.5453422+00:00</local_update>
  <site_id>b56368af-6a41-4164-8fa2-87e9fdbd4c9a</site_id>
  <status>1</status>
  <wash_count>1</wash_count>
</witness>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'WitnessViewModel'.

Response Information

Resource Description

globally unique identifier

Response Formats

application/json, text/json

Sample:
"db842207-c9fd-424a-a778-277c7b88f431"

application/xml, text/xml

Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">db842207-c9fd-424a-a778-277c7b88f431</guid>