POST api/Services/ActiveInActiveRoutePoint

Request Information

URI Parameters

None.

Body Parameters

Tbl_RouteDetails
NameDescriptionTypeAdditional information
RouteDetailsId

integer

None.

RoutId

integer

None.

StoreId

integer

None.

PointName

string

None.

Priority

integer

None.

Latitude

string

None.

Longitude

string

None.

IsActive

boolean

None.

CreatedBy

integer

None.

CreatedDate

date

None.

UpdatedBy

integer

None.

UpdatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "RouteDetailsId": 1,
  "RoutId": 2,
  "StoreId": 3,
  "PointName": "sample string 4",
  "Priority": 1,
  "Latitude": "sample string 5",
  "Longitude": "sample string 6",
  "IsActive": true,
  "CreatedBy": 8,
  "CreatedDate": "2024-12-23T04:22:30.8148488+05:30",
  "UpdatedBy": 10,
  "UpdatedDate": "2024-12-23T04:22:30.8148488+05:30"
}

text/html, multipart/form-data

Sample:
{"RouteDetailsId":1,"RoutId":2,"StoreId":3,"PointName":"sample string 4","Priority":1,"Latitude":"sample string 5","Longitude":"sample string 6","IsActive":true,"CreatedBy":8,"CreatedDate":"2024-12-23T04:22:30.8148488+05:30","UpdatedBy":10,"UpdatedDate":"2024-12-23T04:22:30.8148488+05:30"}

application/xml, text/xml

Sample:
<Tbl_RouteDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataBase">
  <CreatedBy>8</CreatedBy>
  <CreatedDate>2024-12-23T04:22:30.8148488+05:30</CreatedDate>
  <IsActive>true</IsActive>
  <Latitude>sample string 5</Latitude>
  <Longitude>sample string 6</Longitude>
  <PointName>sample string 4</PointName>
  <Priority>1</Priority>
  <RoutId>2</RoutId>
  <RouteDetailsId>1</RouteDetailsId>
  <StoreId>3</StoreId>
  <UpdatedBy>10</UpdatedBy>
  <UpdatedDate>2024-12-23T04:22:30.8148488+05:30</UpdatedDate>
</Tbl_RouteDetails>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponce
NameDescriptionTypeAdditional 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>