POST api/Services/GetPriceDetailsList

Request Information

URI Parameters

None.

Body Parameters

Mst_PriceList
NameDescriptionTypeAdditional information
PriceListId

integer

None.

PriceId

integer

None.

StoreId

integer

None.

ProductId

integer

None.

Name

string

None.

FAT

decimal number

None.

CNF

decimal number

None.

CLR

decimal number

None.

SalePrice

decimal number

None.

PurchasePrice

decimal number

None.

IsActive

boolean

None.

IsDelete

boolean

None.

CreatedBy

integer

None.

CreatedDate

date

None.

UpdatedBy

integer

None.

UpdatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "PriceListId": 1,
  "PriceId": 2,
  "StoreId": 3,
  "ProductId": 4,
  "Name": "sample string 5",
  "FAT": 1.1,
  "CNF": 1.1,
  "CLR": 1.1,
  "SalePrice": 6.1,
  "PurchasePrice": 7.1,
  "IsActive": true,
  "IsDelete": true,
  "CreatedBy": 10,
  "CreatedDate": "2024-12-23T04:17:04.9121346+05:30",
  "UpdatedBy": 12,
  "UpdatedDate": "2024-12-23T04:17:04.9121346+05:30"
}

text/html, multipart/form-data

Sample:
{"PriceListId":1,"PriceId":2,"StoreId":3,"ProductId":4,"Name":"sample string 5","FAT":1.1,"CNF":1.1,"CLR":1.1,"SalePrice":6.1,"PurchasePrice":7.1,"IsActive":true,"IsDelete":true,"CreatedBy":10,"CreatedDate":"2024-12-23T04:17:04.9121346+05:30","UpdatedBy":12,"UpdatedDate":"2024-12-23T04:17:04.9121346+05:30"}

application/xml, text/xml

Sample:
<Mst_PriceList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataBase">
  <CLR>1.1</CLR>
  <CNF>1.1</CNF>
  <CreatedBy>10</CreatedBy>
  <CreatedDate>2024-12-23T04:17:04.9121346+05:30</CreatedDate>
  <FAT>1.1</FAT>
  <IsActive>true</IsActive>
  <IsDelete>true</IsDelete>
  <Name>sample string 5</Name>
  <PriceId>2</PriceId>
  <PriceListId>1</PriceListId>
  <ProductId>4</ProductId>
  <PurchasePrice>7.1</PurchasePrice>
  <SalePrice>6.1</SalePrice>
  <StoreId>3</StoreId>
  <UpdatedBy>12</UpdatedBy>
  <UpdatedDate>2024-12-23T04:17:04.9121346+05:30</UpdatedDate>
</Mst_PriceList>

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>