DELETE api/AddonItems/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

AddonItem
NameDescriptionTypeAdditional information
id

integer

None.

DateCreated

date

None.

LastModified

date

None.

CategoryId

integer

None.

VendorId

integer

None.

SubCategoryName

string

None.

UnitPrice

decimal number

None.

Vat

decimal number

None.

MarkupPrice

decimal number

None.

SellingPrice

decimal number

None.

MarkupPercentage

decimal number

None.

IsFreeItem

boolean

None.

IsActive

boolean

None.

MarkupAmount

decimal number

None.

BonaMarketAmountNoVat

decimal number

None.

BonaMarketAmount

decimal number

None.

HasVat

boolean

None.

MerchantVat

decimal number

None.

MerchantAmount

decimal number

None.

BonaMarketVat

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "DateCreated": "2025-12-11T12:03:50.4991767+02:00",
  "LastModified": "2025-12-11T12:03:50.4991767+02:00",
  "CategoryId": 1,
  "VendorId": 1,
  "SubCategoryName": "sample string 4",
  "UnitPrice": 5.1,
  "Vat": 6.1,
  "MarkupPrice": 7.1,
  "SellingPrice": 8.1,
  "MarkupPercentage": 9.1,
  "IsFreeItem": true,
  "IsActive": true,
  "MarkupAmount": 12.1,
  "BonaMarketAmountNoVat": 13.1,
  "BonaMarketAmount": 14.1,
  "HasVat": true,
  "MerchantVat": 16.1,
  "MerchantAmount": 17.1,
  "BonaMarketVat": 18.1
}

application/xml, text/xml

Sample:
<AddonItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BonaMarketAPI.Database">
  <BonaMarketAmount>14.1</BonaMarketAmount>
  <BonaMarketAmountNoVat>13.1</BonaMarketAmountNoVat>
  <BonaMarketVat>18.1</BonaMarketVat>
  <CategoryId>1</CategoryId>
  <DateCreated>2025-12-11T12:03:50.4991767+02:00</DateCreated>
  <HasVat>true</HasVat>
  <IsActive>true</IsActive>
  <IsFreeItem>true</IsFreeItem>
  <LastModified>2025-12-11T12:03:50.4991767+02:00</LastModified>
  <MarkupAmount>12.1</MarkupAmount>
  <MarkupPercentage>9.1</MarkupPercentage>
  <MarkupPrice>7.1</MarkupPrice>
  <MerchantAmount>17.1</MerchantAmount>
  <MerchantVat>16.1</MerchantVat>
  <SellingPrice>8.1</SellingPrice>
  <SubCategoryName>sample string 4</SubCategoryName>
  <UnitPrice>5.1</UnitPrice>
  <Vat>6.1</Vat>
  <VendorId>1</VendorId>
  <id>1</id>
</AddonItem>