//-- Intent: retrieve the profile for pager message with pagercode of 100000 --//



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

});

//-- Sample Return --//
{
	"CreateStamp":"2013-03-26T01:38:21.727",
	"ChangeStamp":"2013-03-26T01:38:21.727",
	"LastUsed":"0001-01-01T00:00:00",
	"CreatedByUser":"pbacigalupi",
	"ChangedByUser":"",
	"PageCode":659777,
	"Name":"API Pager",
	"Description":"created by api peter",
	"From":"SwiftAPI",
	"DefaultSpokenLanguage":"English",
	"Body":
		[{
			"SpokenLanguage":"English",
			"Subject":"my subject",
			"Body":
				[{
					"$type":"SwiftReach.Swift911.Core.Messages.Pager.PAGER_TEXT_SOURCE_TEXT, SwiftReach.Swift911.Core",
					"Text":"this is the body of my message",
					"TextType":0
				}]
		}],
	"Visibility":0,
	"DeleteLocked":false
}