DSS single call to get results of schedule's LastExtraction

I understand that I can now get the content of an extracted file (for a given schedule) in a single call:

../Extractions/Schedules('12345')/LastExtraction/$value
../Extractions/Schedules('12345')/LastExtraction/FullFile/$value
../Extractions/Schedules('12345')/LastExtraction/NotesFile/$value


1. What is the difference between the "/LastExtraction/$value" and "/LastExtraction/FullFile/$value" calls?

2. Are these calls treated as synchronous?


3. Is there any documentation with examples available?

Best Answer

  • @mdoberschuetz

    Regarding documentation: in the REST API Reference Tree, under LastExtraction we see it returns a ReportExtraction:

    image

    If you then go to the ReportExtraction section, you find under GetDefaultStream the description for the first URL (../Extractions/Schedules('12345')/LastExtraction/$value):

    image

    The descriptions for the other 2 links are under FullFile and NotesFile, in the same section.

Answers