PackageWebContents Test
Txn/PackageWebContents/Summary?packageIds={packageIds}&contentTypeIds={contentTypeIds}
Get summary package web contents for passed packageIds and contentTypeIds. At least on parameter value is required. For production element web contents, use TXN/InventoryWebContents. To filter based on useWebAPI flag on content type and other parameters, use Txn/WebContents. This is mainly used for PackageWebContent setup.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Txn/PackageWebContents/Summary?packageIds={packageIds}&contentTypeIds={contentTypeIds}

URI Parameters

Parameter Name Data Type Required Notes
packageIds string N A comma separated list of package ids. Required if contentTypeIds is not used.
contentTypeIds string N A comma separated list of web content type ids. Required if packageIds is not used.

Request Body

None.

No request body.

Response object type : Collection of PackageWebContentSummary

Response object type Collection of PackageWebContentSummary has the following properties.
Property Name Data Type Length Required Readonly Notes
ContentType WebContentTypeSummary N
FK: TR_INV_CONTENT.id   Resource: WebContentTypes
Id integer N
PackageId integer N
FK: T_PKG.pkg_no   Resource: Packages
Value string N
[
  {
    "Id": 1,
    "Value": "sample string 1",
    "ContentType": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "PackageId": 1
  },
  {
    "Id": 1,
    "Value": "sample string 1",
    "ContentType": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "PackageId": 1
  }
]
<PackageWebContentSummaries xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <PackageWebContentSummary>
    <ContentType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ContentType>
    <Id>1</Id>
    <PackageId>1</PackageId>
    <Value>sample string 1</Value>
  </PackageWebContentSummary>
  <PackageWebContentSummary>
    <ContentType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ContentType>
    <Id>1</Id>
    <PackageId>1</PackageId>
    <Value>sample string 1</Value>
  </PackageWebContentSummary>
</PackageWebContentSummaries>
Change Version Description Contract Old New
Resource Added 15.0.0 New resource added. PackageWebContents