How can we help?

Searching:

0 results found

featureSet/Get (Specific)

GET /api/featureSet/[featureSetId]

Description

Gets the details of a specific Feature Set, as specified by the Feature Set’s ID. This ID is returned in the response of the featureSet/Post.

To get the details of all the Feature Sets allowed to the logged‑in user, see featureSet/Get (List).

See the following for request and response details ‒

See Also

Request ‒ featureSet/Get (Specific)

Property Type Description Mandatory
featureSetId String This is the unique identifier automatically assigned by Axonize when a Feature Set is created. This ID is returned in the response of the featureSet/Post.

 

Example JSON featureSet/Get (Specific) Request

curl -X GET \

  https://api.dev.axonize.com/api/featureSet/5cadfabc478021fce867f85d \

  -H ‘Accept: application/json, text/plain, */*’ \

  -H ‘cache-control: no-cache’ \

Response ‒ featureSet/Get (Specific)

For the requested Feature Set, the response provides the properties in featureSet/Post.

Property Type Description Mandatory
appId String A unique identifier that is automatically generated by Axonize for this Application.

This property is used to link between other entities (such as Users and Devices) and this Application.

Y
featureSetId String This is the unique identifier automatically assigned by Axonize when a Feature Set is created. This ID is returned in the response of the featureSet/Post. Y

 

Example JSON featureSet/Get (Specific) Response

Status 200 – OK

{

    “name”: “Franchisees”,

    “features”: [

{

            “Id”: null,

            “Name”: ” Feature”,

            “DisplayName”: ” Feature”,

            “Type”: 0,

            “IsAllowed”: false,

            “Locked”: false

        },

        {

            “Id”: null,

            “Name”: “Feature 2”,

            “DisplayName”: ” Feature 2″,

            “Type”: 0,

            “IsAllowed”: false,

            “Locked”: false

        }

    ],

    “id”: “5cadfabc478021fce867f85d”,

    “appId”: “ab7d3f48-1469-494f-b0e1-4437ff031ca1”,

    “deleted”: false,

    “createDate”: “2019-04-10T14:16:28.308Z”,

    “createUser”: null,

    “updateDate”: “2019-04-10T14:16:28.308Z”,

    “updateUser”: null,

    “deleteDate”: “2019-04-10T14:16:28.308Z”

}