UnknownConjunctionError
Example
{
	"code": "UnknownConjunctionError",
	"target": "Unknown",
	"details": [
		{
			"code": "UnknownConjunctionError",
			"number": 189,
			"message": "The filter has no conjunction.",
			"description": "Found -0- in -1- instead of a conjunction. Use one of the conjunctions 'AND' or 'OR' to join the filter clauses",
			"faultCode": "Client",
			"helpLink": "http://developer.avalara.com/avatax/errors/UnknownConjunctionError",
			"severity": "Error"
		}
	]
}
Explanation

This indicates that you attempted to use an invalid conjunction in your filter. The $filter parameter permits a variety of complex rules and criteria in order to help you search for the object you wish to find.

You can join multiple criteria together with conjunctions. Avalara supports the “AND” and “OR” conjunctions. Any other conjunction would produce this error.

To fix this error, please review your $filter parameter and ensure that all criteria are joined by the use of the AND or OR conjunctions.

Please see Filtering in REST for more information about filtering.