//-- Intent: retrieve a list of existing voice messages --//
//-- that have all required recordings. For unrecorded, --//
//-- a value of 0 would be passed into {Recorded} instead --//
//-- of 1. --//



$.ajax({
  type: "GET",
  contentType: "application/json; charset=utf-8",
  headers: {"SwiftAPI-Key": "12345"},
  url: "http://api.v4.swiftreach.com/api/Messages/Voice/List/1",
  dataType: "json"
  success: function(result) {
        // Do something with the result
    }

});