Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • It immediately returns a reference for the operation in trm.requestid, and an operation status in trm.status.
  • As long as the status is not Finished or Failed, you need to poll the system with the trm.requestid value. See Asynchronous operation for how to do this.
  • Ultimately upon completion the operation status includes the custom.filetoken value which lets you download the JSON resultreport:
Code Block
{
    "trm": {
		"requestid": 559,
        "status": "Finished",
		...
    },
    "custom": {
        "filetoken": "026171df25c641d0b04316a28cf3cca1",
        "filename": "report-16/12/2019-18:06.xlsx"
    }
}

Download text edits report

...

Code Block
(GET) /api/media/get/{filetoken}

...


EXAMPLES

N/A