Feature Status
This method allows checking whether particular features are enabled for the user.
Request
name
value
url
method
GET
Headers Parameters explained:
name
value
description
Authorization
Bearer {auth token}
How to obtains access token https://docs.pulsoid.net/#how-to-obtain-an-authorization-token
Path Param Param
name
type
description
feature_id
one of
id of the feature
Example of request url
https://dev.pulsoid.net/api/v1/features/gd_modResponse
Response body is a json object with id of the feature and boolean flag enabled .
{
"id": "gd_mod",
"enabled": true
}Curl Request Example
Response Example
Last updated