POST api/dbScenes

Request Information

URI Parameters

None.

Body Parameters

dbScene
NameDescriptionTypeAdditional information
idScenes

integer

None.

guid

string

None.

data

string

None.

datetime

date

None.

deleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "idScenes": 1,
  "guid": "sample string 2",
  "data": "sample string 3",
  "datetime": "2024-11-28T21:28:00.5264568+03:00",
  "deleted": true
}

application/xml, text/xml

Sample:
<dbScene xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WCity2">
  <data>sample string 3</data>
  <datetime>2024-11-28T21:28:00.5264568+03:00</datetime>
  <deleted>true</deleted>
  <guid>sample string 2</guid>
  <idScenes>1</idScenes>
</dbScene>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

dbScene
NameDescriptionTypeAdditional information
idScenes

integer

None.

guid

string

None.

data

string

None.

datetime

date

None.

deleted

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "idScenes": 1,
  "guid": "sample string 2",
  "data": "sample string 3",
  "datetime": "2024-11-28T21:28:00.6358369+03:00",
  "deleted": true
}

application/xml, text/xml

Sample:
<dbScene xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WCity2">
  <data>sample string 3</data>
  <datetime>2024-11-28T21:28:00.6358369+03:00</datetime>
  <deleted>true</deleted>
  <guid>sample string 2</guid>
  <idScenes>1</idScenes>
</dbScene>