Retrieves the most recent transactions of a Flex document in JSON format.
URL
(GET) /api/apps/wbflex/transactions/{id}/log
PARAMETERS
URL parameters are:
|
id |
The Flex document identifier. Either a document ID (such as 1000) or a job ID (such as c300). |
int/string, Mandatory |
|
skip |
Optional, default is 0. Permits to paginate transactions. A value of 20 means that we show the 20th, 21th etc. transaction |
int?, Optional |
|
take |
Optional, default is 20. Retrieve this number of transaction. The maximum allowed value is 100. |
int?, Optional |
RESULTS
A JSON object containing some details of the Flex document plus a list of the transactions:
{
"skip": 0,
"take": 6,
"total": 6,
"id": 10683,
"name": "Sample document.wbflex",
"filterName": "SRX",
"pid": 3623,
"pname": "JAWS-417",
"src": { "v": "en-GB", "t": "English (United Kingdom)" },
"trgs": [ { "v": "fr-FR", "t": "French (France)" }
],
"rows": [ ..... ]
}
Comments on some properties:
-
id - The document ID
-
name: The document name
-
filterName: The filter configuration's name that applies to this document. The configuration is assigned when creating the Flex document.
-
pid: The project ID
-
pname: The project name
-
src: The source language information
-
trgs: The target language(s) information
-
rows: The list of transactions. Each element in rows is a transaction.
For a detailed description of properties please refer to: apps/wbflex/documents/{id}/log/report
EXAMPLES
-