//-- Intent: get a the profile of contact list with ListCode of 668487 --//


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

});

<!-- example return value -->
{
	"ListName":"Peter Test",
	"ListType":0,
	"ListCode":668487,
	"ListSize":1,
	"CreateStamp":"2013-03-23T16:05:33.937",
	"ChangeStamp":"2013-03-25T23:46:08.82",
	"CreatedByUser":"pbacigalupi",
	"ChangedByUser":"pbacigalupi",
	"Description":"Peter Test",
	"ExposeHomePortal":false,
	"ExposeVisitorPortal":false,
	"DeleteLocked":false,
	"SubscriptionRequiresApproval":false,
	"PendingApprovalCount":0
}