Versions Compared

Key

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

...

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

where the response fields can be explained as follows:

FieldTypeDescription
fidintegerFeature Id.
fnsstringFeature name.
fvstringFeature version.
ftypestringFeature type (Floating, Nodelocked or Token).
lsidintegerLicense server Id.
lsnbooleanLicense server name.successbooleanThis field indicates that the API request was successfully processed.
vnstringLicense server vendor name.
gtnstringGathering type (imported, realtime).
successbooleanIndicates whether your API request was successfully processed.
msgstringUnlimited string

Error message returned on failure.

codeinteger

Error code for unsuccessful request.

totalCountinteger

Total number of all matching results.

Examples 

The following examples make use of GET method. 

...