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
(GET) /api/settings/tasks/print
PARAMETERS
The URL parameters are:
format | The report format, any of:
| Optional, string |
RESULTS
The method returns a file “tasks” in the following format:
JSON
The file content is a JSON array. See example below:
[
{
"v": "TR",
"t": "Translation"
},
{
"v": "RV",
"t": "Revision"
},
{
"v": "AUTO",
"t": "AutoCompleteMe"
},
{
"v": "PROOF",
"t": "Proofreading"
},
...
]
XML
<?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.
Copyright Wordbee - Buzzin' Outside the Box since 2008