Skip to main content

Hello All,  

 

I'm looking to retrieve the creation date details of each Cloud Page in a Business Unit using the following API: 

restInstanceUrl + "asset/v1/content/assets/query"

However, it only returns the correct data for Cloud Pages created after the Spring 24 release. For those created prior to the Spring 24 release, it provides a default date instead of the actual date available in the properties.

Is there any way to fetch the actual creation date details for the Cloud Pages created before the Spring 24 release? 

 

Thank you! 

 

@* Marketing Cloud Engagement *

 

 

#Marketing Cloud Engagement

1 件の回答
  1. 2025年9月30日 7:34

    Hi @Manohar B E

     

     You can try the SOAP API, since the soap api provides more detailed metadata of the assets using the below piece of SOAP Request Body: 

     

    <ObjectType>Asset</ObjectType> 

      <Properties>CreatedDate</Properties> 

      <Filter xsi:type="SimpleFilterPart"> 

        <Property>

    AssetType.ID

    </Property> 

        <SimpleOperator>equals</SimpleOperator> 

        <Value>ID of the Cloud Page assets</Value> 

      </Filter>  

     

     If the data still does not appear, raise a support ticket with Salesforce to request access to legacy metadata. For future assets, it is best practice to document critical metadata externally or set up tracking where possible to avoid similar issues.  

     

    Thank you

0/9000