• request:
				
					{
    "id": "Z4E40EE6F",
    "method": "nma.timezones.detailed.list",
    "params": {}
}				
			
  • response(success):
				
					{
    "id": "Z4E40EE6F",
    "method": "nma.timezones.detailed.list",
    "error": null,
    "result": {
        "timezones": [
            { "name": "America/Chicago", "current_gmt_offset": 10800 },
            { "name": "Europe/Paris", "current_gmt_offset": 10801 },
        ]
    }
}				
			
  • response(failure):
				
					{
    "id": "Z4E40EE6F",
    "method": "nma.timezones.detailed.list",
    "error": {
        "code": 24,
        "data": "cloud.error.http_request_failed"
    },
    "result": {}
}