Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Get list of files attached to the flex file.

URL

(GET) /apps/wbflex/documents/{id}/files

PARAMETERS

URL parameters are:

id

Specify either a document ID (such as 1000) or a job ID (such as c300).

Mandatory


RESULTS

An array with any files that accompany the flex document. These are files saved to the same folder as the flex file in the project library (under the source language).

These can be instructions or any other information made available for download or upload.

Each file is an object with file name ("name"), change date ("date") and size in bytes ("size").


EXAMPLES

Show files located in the same project folder as the Flex document file:

[
    {
        "name": "Software-documentation.docx",
        "date": "2019-05-17T12:44:38.8070208Z",
        "size": 32561
    },
    {
        "name": "Software\\Instructions.docx",
        "date": "2019-05-21T14:00:21.9765485Z",
        "size": 1634084
    }
]




  • No labels