...
Code Block | ||
---|---|---|
| ||
https://<server-host-name>/xml-data/<data-producer-id>?<PARAM_ID_<param-id-1>=<param-value_1>&<PARAM_ID_<param-id-2>=<param-value-2> |
In Flex5 API terms, that evolves to something like this:
Code Block | ||
---|---|---|
| ||
https://yourcompany.flexrentalsolutions.com/f5/api/<api-path>/<path-variable(s)>/?parameterSubmission=true&<PARAM_ID_<param-id-1>=<param-value_-1>&<PARAM_ID_2><param-id2>=<param-value-2> |
where PARAM_ID_1
and PARAM_ID_api-path
includes any necessary additions such as inventory-tree/nodes
, path-variable(s)
includes things like modelId
or documentId
, and where param-id1
and param-id-2
are parameter ids
as found in report-defintions.json
(request a copy? list publicly?). The parameter count can, of course, vary. In any case, the first "true" parameter is always parameterSubmission
with a value of true
. If this is not included, we cannot guarantee your results.
...