Feature Point Items
  • 17 Jun 2022
  • 1 Minute to read
  • Dark
    Light

Feature Point Items

  • Dark
    Light

Article summary

Feature point item JSON Format

Feature point item is represented as simple flat JSON objects with the following keys:

NameTypeDescription
idstringID of the feature point item.
productIdstringID of Product.
namestringName of the feature point item.
descriptionstringDescription of the feature point item.

Get site feature point items

GET global/sites/{siteId}/featurepointitems

  • Parameters:

No Parameters

  • Response:

An array of feature point items

  • Example

Sample Request:

curl https://partnerapi.comm100.io/v4/global/sites/100/featurepointitems \ 
    -X 'GET' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

[
  {
      "id": "AgentSSO",
      "productId":"Global",
      "name": "Agent SSO",
      "description": ""
  }
] 

Get product feature point items

GET global/products/{productId}/featurepointitems

  • Parameters:

No Parameters

  • Response:

An array of feature point items

  • Example

Sample Request:

curl https://partnerapi.comm100.io/v4/global/products/global/featurepointitems \ 
    -X 'GET' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

[
  {
      "id": "AgentSSO",
      "productId":"Global",
      "name": "Agent SSO",
      "description": ""
  }
] 

Was this article helpful?