POST api/admin/ride/create
Request Information
URI Parameters
None.
Body Parameters
RideCreateEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| UrlName | string |
None. |
|
| ParkId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"UrlName": "sample string 2",
"ParkId": 3
}
application/xml, text/xml
Sample:
<RideCreateEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ThemeParkEntities.Ride"> <Name>sample string 1</Name> <ParkId>3</ParkId> <UrlName>sample string 2</UrlName> </RideCreateEntity>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.