POST shows/{showId}/bulkDeletePartPriceLists

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showId

integer

Required

Body Parameters

PartPriceListBulkDeleteDto
NameDescriptionTypeAdditional information
PartPriceListIds

Collection of integer

None.

IsSelectAll

boolean

None.

ShowId

integer

None.

VendorId

integer

None.

Group

string

None.

ItemName

string

None.

ItemNumber

string

None.

SortColumn

string

None.

SortOrderDirection

string

None.

StartRecord

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "PartPriceListIds": [
    1,
    2
  ],
  "IsSelectAll": true,
  "ShowId": 2,
  "VendorId": 3,
  "Group": "sample string 4",
  "ItemName": "sample string 5",
  "ItemNumber": "sample string 6",
  "SortColumn": "sample string 7",
  "SortOrderDirection": "sample string 8",
  "StartRecord": 9,
  "PageSize": 10
}

Response Information

Resource Description

PartPriceListBulkDeleteResponseDto
NameDescriptionTypeAdditional information
NotDeletedPartPriceListIds

Collection of integer

None.

Status

boolean

None.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "NotDeletedPartPriceListIds": [
    1,
    2
  ],
  "Status": true
}