Feature Status
This method allows checking whether particular features are enabled for the user.
Request
name
value
url
https://dev.pulsoid.net/api/v1/features/{feature_id}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
gd_modid 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
curl --request GET \
--url https://dev.pulsoid.net/api/v1/features/gd_mod \
--header 'Authorization: Bearer 052b0236-eac4-45c7-b889-556ececd4e90'Response Example
{
"id": "gd_mod",
"enabled": true
}Last updated