POST api/admin/ride/delete/video

Request Information

URI Parameters

None.

Body Parameters

VideoEditEntity
NameDescriptionTypeAdditional information
Id

integer

None.

MediaFolderId

integer

None.

VideoId

string

None.

VideoTitle

string

None.

VideoCreatedDate

date

None.

CreatorId

integer

None.

Approved

boolean

None.

IsLive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "MediaFolderId": 2,
  "VideoId": "sample string 3",
  "VideoTitle": "sample string 4",
  "VideoCreatedDate": "2026-01-09T03:48:59.3156382+00:00",
  "CreatorId": 1,
  "Approved": true,
  "IsLive": true
}

application/xml, text/xml

Sample:
<VideoEditEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ThemeParkEntities.Global">
  <Approved>true</Approved>
  <CreatorId>1</CreatorId>
  <Id>1</Id>
  <IsLive>true</IsLive>
  <MediaFolderId>2</MediaFolderId>
  <VideoCreatedDate>2026-01-09T03:48:59.3156382+00:00</VideoCreatedDate>
  <VideoId>sample string 3</VideoId>
  <VideoTitle>sample string 4</VideoTitle>
</VideoEditEntity>

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 'VideoEditEntity'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.