Skip to main content

settings/tasks/print

Retrieves the list of all tasks defined in the platform with task code and title, returning an Excel, JSON or XML file.

URL

CODE
(GET) /api/settings/tasks/print

PARAMETERS

The URL parameters are:

format

The report format, any of:

  • Excel (default)

  • Xml

  • Json

Optional, string

RESULTS

The method returns a file “tasks” in the following format:

JSON

The file content is a JSON array. See example below:

CODE
[
  {
    "v": "TR",
    "t": "Translation"
  },
  {
    "v": "RV",
    "t": "Revision"
  },
  {
    "v": "AUTO",
    "t": "AutoCompleteMe"
  },
  {
    "v": "PROOF",
    "t": "Proofreading"
  },
  ...
]

XML

CODE
<?xml version="1.0" encoding="utf-8"?>
<Rows>
  <Row>
    <v>TR</v>
    <t>Translation</t>
  </Row>
  <Row>
    <v>RV</v>
    <t>Revision</t>
  </Row>
  <Row>
    <v>AUTO</v>
    <t>AutoCompleteMe</t>
  </Row>
  <Row>
    <v>PROOF</v>
    <t>Proofreading</t>
  </Row>
  ...
</Rows>

EXCEL

The report is an .xlsx file.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.