JSON API » fields » fields/allowed/create
Creates a new custom field allowed value. Only used for custom fields with type "allowed".
Input parameters
Requires authentication and the system role privilege.
| Name | Type | Description | Required | Default value |
|---|---|---|---|---|
| auth_username | String | Authentication username. | Yes | |
| auth_password | String | Authentication password. | Yes | |
| field | Integer | ID of field. | Yes | |
| value | String | Allowed value. | Yes | |
| display | String | Value to display to users. Empty string for same as value. | No | Empty string. |
| validation | Integer | 1 to validate input then return, 0 for full action. | No | 0 |
Responses
| Code | Description |
|---|---|
| 201 | Input passed validation. Only returned if validation=1. |
| 204 | Success. |
| 400 | Invalid input parameters specified. Check the key and message fields for more details. |
| 401 | The authentication details provided are invalid. |
| 402 | Your role does not allow this. |
Data returned
No data is returned.
Example: With required parameters
http://enswitch.example.com/api/json/fields/allowed/create/?auth_username=user;auth_password=password;field=1;value=example1{ "responses":[ { "code":"204", "key":"", "message":"OK" } ] }
Change history
| Version | Changes |
|---|---|
| 4.0 | Function added. |
