POST api/admin/ride/create/value
Request Information
URI Parameters
None.
Body Parameters
RideValueEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| RideValueId | integer |
None. |
|
| RideId | integer |
None. |
|
| KeyId | integer |
None. |
|
| KeyValueData | string |
None. |
|
| ValueData | string |
None. |
|
| AdditionalValueData | string |
None. |
|
| ImageNames | string |
None. |
|
| ValueDataTypeId | integer |
None. |
|
| ValueOrderBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"RideValueId": 1,
"RideId": 2,
"KeyId": 3,
"KeyValueData": "sample string 4",
"ValueData": "sample string 5",
"AdditionalValueData": "sample string 6",
"ImageNames": "sample string 7",
"ValueDataTypeId": 8,
"ValueOrderBy": 9
}
application/xml, text/xml
Sample:
<RideValueEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ThemeParkEntities.Ride"> <AdditionalValueData>sample string 6</AdditionalValueData> <ImageNames>sample string 7</ImageNames> <KeyId>3</KeyId> <KeyValueData>sample string 4</KeyValueData> <RideId>2</RideId> <RideValueId>1</RideValueId> <ValueData>sample string 5</ValueData> <ValueDataTypeId>8</ValueDataTypeId> <ValueOrderBy>9</ValueOrderBy> </RideValueEntity>
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.