POST api/Route/UpdateRoute

Request Information

URI Parameters

None.

Body Parameters

RouteModel
NameDescriptionTypeAdditional information
RouteId

integer

None.

RouteName

string

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "RouteId": 1,
  "RouteName": "sample string 2",
  "IsActive": true
}

application/xml, text/xml

Sample:
<RouteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/kcm_api_portal.Models">
  <IsActive>true</IsActive>
  <RouteId>1</RouteId>
  <RouteName>sample string 2</RouteName>
</RouteModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.