Versions Compared

Key

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

...

Note: By default, filter rules are case-insensitive.

Response

 

Code Block
languagejs
firstline1
linenumberstrue
{
success: true, 
message: ${message}, 
data: [{
  fid: ${featureId}, 
  fns: ${featureName},
  fv: ${featureVersion},
  ftype: ${featureType},
  lsid: ${licenseServerId},
  lsn: ${licenseServerName},
  vn: ${licenseServerVendorName},
  gtn: ${licenseServerGatheringType}
}]
}

...

 - To obtain feature information filtered by name, version and type, use the following command: 

Code Block
languagejs
firstline1
linenumberstrue
curl --data="fns=a&fv=2.1&ftype=floating" -H "X-Auth-token: abcd" "http://youdomain/report/features/json"

- To get feature information filtered by Id, enter the following command: 

Code Block
languagejs
firstline1
linenumberstrue
curl --data-urlencode="filter=[{"value": 1, "field": "fid"}]" -H "X-Auth-token: abcd" "http://youdomain/report/features/json"

...