Converting circular structure to JSON --> starting at object with constructor 'Object' --- property 'win32' closes the circle 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;