PARAMETER_INVALID

In terms of the error a "parameter" is a special named value, that is delivered in HTTP headers or query arguments.

Parameter

This error message includes the parameter field, that holds the name of the HTTP header or the query argument, the value of which is believed to be invalid.

Reason

  • The value of the parameter is invalid

Solution

  • Make sure, that the value matches the expected format

Example

{
    "status": 400,
    "errors": [
        {
            "code": "PARAMETER_INVALID",
            "parameter": "X-Nonce",
            "message": "The value of the parameter is invalid",
            "more_info": "https://developer.kayako.com/api/v1/reference/errors/PARAMETER_INVALID"
        }
    ]
}