You want to identify or retrieve the latest updated assets.
For this, there are several solutions depending on your profile and your needs.
I am a user and want to get this in Quable PIM
For this, nothing could be simpler:
Go to the advanced search screen
Select the "All assets" object type
Select the "Update Date" filter and specify the conditions you want. In the example below, we are asking for all media modified in the last 5 days
You can of course filter on the creation dates if you prefer. Useful documentation :
Advanced search and filter: https://docs.quable.com/v5-EN/docs/advanced-search#filter-by
Exports from the advanced search: https://docs.quable.com/v5-EN/docs/advanced-search#export-results
I am a developer and want to retrieve via CSV
In this case, we invite you to perform unitary or scheduled exports. Each CSV retrieved from this interface or directly from your FTP server will give you all the assets and all or part of the data for each asset (depending on whether you use a mapping or not)
Among the data present in the CSV, you will find in particular :
the creation date
the date of the update
the URLs for downloading media
This should allow you to filter the contents of the CSV according to your needs and perform the desired processing.
Useful documentation :
Asset export: https://docs.quable.com/v5-EN/docs/launch-an-export
Scheduled exports: https://docs.quable.com/v5-EN/docs/scheduled-exports
I am a developer and want to retrieve via API
If you want to retrieve the latest assets via API, you must use API v5:
By making the following call, you will receive in the form of a paginated collection, all the assets modified since November 16, 2022, at 13h43
import requests
import json
url = "https://xxx.quable.com/api_1.php/assets?page=1&limit=10&dateModified[after]=2022-11-16 13:43:00"
payload={}
headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer xxx'
}
response = requests.request("GET", url, headers=headers, data=payload, timeout=30)
print(response.text)
Keywords: latest updated assets, user, developer, Quable PIM, advanced search, filter, creation dates, update date, CSV, unitary exports, scheduled exports, data mapping, API v5, asset collection, paginated collection.