FIELD_INVALID
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 invalid.
Reason
- The API service refuses to accept the value of this field
Solution
- Make sure, that the value of the field matches the expected format (check the corresponding API reference section)
Example
{
"status": 400,
"errors": [
{
"code": "FIELD_INVALID",
"parameter": "alias",
"message": "The value of the field is invalid",
"more_info": "https://developer.kayako.com/api/v1/reference/errors/FIELD_INVALID"
}
]
}