GET api/selectable-product-bundles

This method will retrieve all product bundles that user can select individually on the UI

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of

Collection of ProductBundle
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Description

string

None.

Price

decimal number

None.

PreviewImageUrl

string

None.

CreatedDate

date

None.

DeletedDate

date

None.

ProductBundleTypeId

integer

None.

ProductBundleType

ProductBundleType

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "description": "sample string 3",
    "price": 4.0,
    "previewImageUrl": "sample string 5",
    "createdDate": "2025-05-20T16:06:38.0846367-05:00",
    "deletedDate": "2025-05-20T16:06:38.0846367-05:00",
    "productBundleTypeId": 8,
    "productBundleType": {
      "id": 1,
      "type": "sample string 2",
      "description": "sample string 3"
    }
  },
  {
    "id": 1,
    "name": "sample string 2",
    "description": "sample string 3",
    "price": 4.0,
    "previewImageUrl": "sample string 5",
    "createdDate": "2025-05-20T16:06:38.0846367-05:00",
    "deletedDate": "2025-05-20T16:06:38.0846367-05:00",
    "productBundleTypeId": 8,
    "productBundleType": {
      "id": 1,
      "type": "sample string 2",
      "description": "sample string 3"
    }
  }
]

text/html

Sample:
[{"id":1,"name":"sample string 2","description":"sample string 3","price":4.0,"previewImageUrl":"sample string 5","createdDate":"2025-05-20T16:06:38.0846367-05:00","deletedDate":"2025-05-20T16:06:38.0846367-05:00","productBundleTypeId":8,"productBundleType":{"id":1,"type":"sample string 2","description":"sample string 3"}},{"id":1,"name":"sample string 2","description":"sample string 3","price":4.0,"previewImageUrl":"sample string 5","createdDate":"2025-05-20T16:06:38.0846367-05:00","deletedDate":"2025-05-20T16:06:38.0846367-05:00","productBundleTypeId":8,"productBundleType":{"id":1,"type":"sample string 2","description":"sample string 3"}}]

application/xml, text/xml

Sample:
<ArrayOfProductBundle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities">
  <ProductBundle>
    <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
    <CreatedDate>2025-05-20T16:06:38.0846367-05:00</CreatedDate>
    <DeletedDate>2025-05-20T16:06:38.0846367-05:00</DeletedDate>
    <Description>sample string 3</Description>
    <Name>sample string 2</Name>
    <PreviewImageUrl>sample string 5</PreviewImageUrl>
    <Price>4</Price>
    <ProductBundleType xmlns:d3p1="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.ValueTypes">
      <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
      <d3p1:Description>sample string 3</d3p1:Description>
      <d3p1:Type>sample string 2</d3p1:Type>
    </ProductBundleType>
    <ProductBundleTypeId>8</ProductBundleTypeId>
  </ProductBundle>
  <ProductBundle>
    <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
    <CreatedDate>2025-05-20T16:06:38.0846367-05:00</CreatedDate>
    <DeletedDate>2025-05-20T16:06:38.0846367-05:00</DeletedDate>
    <Description>sample string 3</Description>
    <Name>sample string 2</Name>
    <PreviewImageUrl>sample string 5</PreviewImageUrl>
    <Price>4</Price>
    <ProductBundleType xmlns:d3p1="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.ValueTypes">
      <Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
      <d3p1:Description>sample string 3</d3p1:Description>
      <d3p1:Type>sample string 2</d3p1:Type>
    </ProductBundleType>
    <ProductBundleTypeId>8</ProductBundleTypeId>
  </ProductBundle>
</ArrayOfProductBundle>