How can we help?

Searching:

0 results found

featureSet/Get (List)

GET /api/featureSet/

Description

Gets a list of all the Feature Sets.

To get the details of a specific Feature Set, refer to featureSet/Get (Specific).

See the following for request and response details ‒

See Also

Request ‒ featureSet/Get (List)

Property Type Description Mandatory
appId String The appId of the Master Application. Y

 

Example JSON featureSet/Get (List) Request

curl -X GET \

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

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

-H ‘appId: f51df5bf-8d3c-4ba5-9574-3f3b8d6a26bd’ \

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

Response ‒ featureSet/Get (List)

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

Example JSON featureSet/Get (List) Response

Status 200 – OK

[

{

“name”: “FeatureSet”,

“features”: [

{

“Id”: null,

“Name”: ” Feature “,

“DisplayName”: ” Feature “,

“Type”: 0,

“IsAllowed”: true,

“Locked”: false

}

],

“id”: “5c9a239899522a1c24b7c95b”,

“appId”: null,

“deleted”: false,

“createDate”: “2019-03-21T14:00:59.265Z”,

“createUser”: null,

“updateUser”: null,

“deleteDate”: “0001-01-01T00:00:00Z”

},

{

“name”: “Soiot”,

“features”: [

{

“Id”: null,

“Name”: “Feature”,

“DisplayName”: ” Feature “,

“Type”: 0,

“IsAllowed”: false,

“Locked”: true

}

],

“id”: “5cadfab9478021fce867f84c”,

“appId”: “289a7624-c590-4b4c-b15a-7801d8902ce9”,

“deleted”: false,

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

“createUser”: null,

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

“updateUser”: null,

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

}

]