POST api/Services/ActiveInActiveRoute
Request Information
URI Parameters
None.
Body Parameters
Tbl_RouteMasterName | Description | Type | Additional information |
---|---|---|---|
RouteId | integer |
None. |
|
StoreId | integer |
None. |
|
RouteName | string |
None. |
|
IsActive | boolean |
None. |
|
CreatedBy | integer |
None. |
|
CreatedDate | date |
None. |
|
UpdatedBy | integer |
None. |
|
UpdatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "RouteId": 1, "StoreId": 2, "RouteName": "sample string 3", "IsActive": true, "CreatedBy": 5, "CreatedDate": "2024-12-23T04:27:38.2255034+05:30", "UpdatedBy": 7, "UpdatedDate": "2024-12-23T04:27:38.2255034+05:30" }
text/html, multipart/form-data
Sample:
{"RouteId":1,"StoreId":2,"RouteName":"sample string 3","IsActive":true,"CreatedBy":5,"CreatedDate":"2024-12-23T04:27:38.2255034+05:30","UpdatedBy":7,"UpdatedDate":"2024-12-23T04:27:38.2255034+05:30"}
application/xml, text/xml
Sample:
<Tbl_RouteMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataBase"> <CreatedBy>5</CreatedBy> <CreatedDate>2024-12-23T04:27:38.2255034+05:30</CreatedDate> <IsActive>true</IsActive> <RouteId>1</RouteId> <RouteName>sample string 3</RouteName> <StoreId>2</StoreId> <UpdatedBy>7</UpdatedBy> <UpdatedDate>2024-12-23T04:27:38.2255034+05:30</UpdatedDate> </Tbl_RouteMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponceName | Description | Type | Additional information |
---|---|---|---|
Status | string |
None. |
|
Message | string |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Data": {} }
text/html, multipart/form-data
Sample:
{"Status":"sample string 1","Message":"sample string 2","Data":{}}
application/xml, text/xml
Sample:
<APIResponce xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers"> <Data /> <Message>sample string 2</Message> <Status>sample string 1</Status> </APIResponce>