FIELD_EMPTY
In terms of the error a "field" is a special named value, that is used to deliver a value for a resource's field. Fields should be specified in the request body.
Parameter
Messages with this error code will include the parameter
field with the name of the field, the value of which is empty.
Reason
- The API service requires the value of this field to be non-empty
Solution
- Assign a proper value to the field
- Remove this field from the API request, if it's not required
Example
{
"status": 400,
"errors": [
{
"code": "FIELD_EMPTY",
"parameter": "channel",
"message": "The value of the field cannot be empty",
"more_info": "https://developer.kayako.com/api/v1/reference/errors/FIELD_EMPTY"
}
]
}