api - Querying 'DeletedEntry' using an id -


the contentmanagement.entry.delete webhook not contain entry fields.

eg:

{ "sys": { "type": "deletedentry", "id": "{id here}", "space": { "sys": { "type": "link", "linktype": "space", "id": "{space id here}" } }, "revision": 1, "createdat": "2017-08-18t09:57:26.226z", "updatedat": "2017-08-18t09:57:26.226z", "deletedat": "2017-08-18t09:57:26.226z", "contenttype": { "sys": { "type": "link", "linktype": "contenttype", "id": "page" } } } }

is there way retrieve fields associated entry after has been deleted? -or - there method query deleted entries can associated field data?

thanks,

unfortunately there no way query deleted entries or retrieve fields.

you can query unpublished entries through management api, once entry deleted it's gone , webhook payload indicates id of deleted entry, corresponding content fields lost.


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -