Versions Compared

Key

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

...

Say you would like to download data in a CSV format file about current feature usage for feature "1". To generate this data set, enter a command similar to the following.

...

The following code block shows an example result of a successful request.

 

Code Block
languagejs
firstline1
linenumberstrue
{
    success: ${success},
    msg: ${message},
    data: [{
        "fid": ${featureId},
        "lud": ${dateAndTime},
        "ltc": ${totalCount},
        "lumax": ${licenseUsageMax},
        "lbmax": ${licensesBorrowedMax}
    }],
    "code": ${errorCode},
    "totalCount": ${totalCount}
}

where the response fields can be explained as follows:

...