TypeError: Converting circular structure to JSON at JSON.stringify js error code example
Example: Converting circular structure to JSON
//The error means that the object you pass in the request has a circular reference, something like:
var a = {};
a.b = a;