POST shows/{showId}/partPriceLists/bulk
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
showId | integer |
Required |
Body Parameters
PartPriceListBulkCreateDtoName | Description | Type | Additional information |
---|---|---|---|
CreateDtos | Collection of PartPriceListCreateDto |
Required |
Request Formats
application/json, text/json
Sample:
{ "CreateDtos": [ { "PriceListId": 1, "PartId": 2, "IsTaxable": true, "Discount": 4.0, "IsOutOfStock": true }, { "PriceListId": 1, "PartId": 2, "IsTaxable": true, "Discount": 4.0, "IsOutOfStock": true } ] }
Response Information
Resource Description
Collection of PartPriceListHeaderDtoName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
PriceListId | integer |
None. |
|
PartId | integer |
None. |
|
Discount | decimal number |
None. |
|
IsTaxable | boolean |
None. |
|
IsOrderable | boolean |
None. |
|
MinimumQuantity | decimal number |
None. |
|
isOnCurrentPriceList | boolean |
None. |
|
IsOutOfStock | boolean |
None. |
|
IsNotAvailableAfterDeadline | boolean |
None. |
|
IsStandardOffering | boolean |
None. |
|
IsSupervisionFeeEligible | boolean |
None. |
|
IsShowSpecificBOM | boolean |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
[ { "Id": 1, "PriceListId": 2, "PartId": 3, "Discount": 1.0, "IsTaxable": true, "IsOrderable": true, "MinimumQuantity": 1.0, "isOnCurrentPriceList": true, "IsOutOfStock": true, "IsNotAvailableAfterDeadline": true, "IsStandardOffering": true, "IsSupervisionFeeEligible": true, "IsShowSpecificBOM": true }, { "Id": 1, "PriceListId": 2, "PartId": 3, "Discount": 1.0, "IsTaxable": true, "IsOrderable": true, "MinimumQuantity": 1.0, "isOnCurrentPriceList": true, "IsOutOfStock": true, "IsNotAvailableAfterDeadline": true, "IsStandardOffering": true, "IsSupervisionFeeEligible": true, "IsShowSpecificBOM": true } ]