JSON API » plans » plans/features/get
Get fields of a rate plan feature.
Input parameters
Does not require authentication.
Name | Type | Description | Required | Default value |
---|---|---|---|---|
feature | String | Feature to get. | Yes | |
plan | Integer | ID of rate plan. | Yes |
Responses
Code | Description |
---|---|
200 | Success. |
400 | The rate plan does not exist. |
404 | The rate plan feature does not exist. |
Data returned
Fields of rate plan feature.
Example: With required parameters
http://enswitch.example.com/api/json/plans/features/get/?plan=123;feature=view{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":{ "plan":123, "feature":"view", "included":0, "maximum":-1 } }
Change history
Version | Changes |
---|---|
3.13 | Function added. |