POST api/PurchaseQuoteDetail

Request Information

URI Parameters

None.

Body Parameters

Collection of PurchaseQuoteDetailBL
NameDescriptionTypeAdditional information
PurchaseQuoteDetailId

integer

None.

PurchaseQuoteId

integer

None.

ProductId

integer

None.

Quantity

integer

None.

UnitPrice

decimal number

None.

IsActive

boolean

None.

CreatedDate

date

None.

PurchaseQuoteName

string

None.

ProductName

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "PurchaseQuoteDetailId": 1,
    "PurchaseQuoteId": 1,
    "ProductId": 1,
    "Quantity": 1,
    "UnitPrice": 1.0,
    "IsActive": true,
    "CreatedDate": "2025-12-06T04:37:08.7568843Z",
    "PurchaseQuoteName": "sample string 2",
    "ProductName": "sample string 3"
  },
  {
    "PurchaseQuoteDetailId": 1,
    "PurchaseQuoteId": 1,
    "ProductId": 1,
    "Quantity": 1,
    "UnitPrice": 1.0,
    "IsActive": true,
    "CreatedDate": "2025-12-06T04:37:08.7568843Z",
    "PurchaseQuoteName": "sample string 2",
    "ProductName": "sample string 3"
  }
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PurchaseQuoteDetailBL
NameDescriptionTypeAdditional information
PurchaseQuoteDetailId

integer

None.

PurchaseQuoteId

integer

None.

ProductId

integer

None.

Quantity

integer

None.

UnitPrice

decimal number

None.

IsActive

boolean

None.

CreatedDate

date

None.

PurchaseQuoteName

string

None.

ProductName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "PurchaseQuoteDetailId": 1,
  "PurchaseQuoteId": 1,
  "ProductId": 1,
  "Quantity": 1,
  "UnitPrice": 1.0,
  "IsActive": true,
  "CreatedDate": "2025-12-06T04:37:08.7568843Z",
  "PurchaseQuoteName": "sample string 2",
  "ProductName": "sample string 3"
}