A bit surprising that the first API call I ran in Meraki gave me trouble. I requested my organizations from /organizations, and I got back something like this: [{"id":321786418483472292,"name":"sample"}] But in Node.js, this parses as: [{ id: 321786418483472300, name: 'sample' }] ...because the "id" is two digits longer than Number.MAX_SAFE_INTEGER, making it unparseable in Javascript. If you know you have a 64-bit integer, put it in JSON as a string, the way Twitter does.
... View more