Sample code for 30+ languages & platforms
Visual FoxPro

MedTunnel: Get Mailbox Messages

See more MedTunnel Examples

Get the messages in the specified mailbox. The logged in user must have access to the mailbox.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loHttp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lnReturnCode
LOCAL lcReturnCodeText
LOCAL lcData
LOCAL loJarr
LOCAL loJson
LOCAL lnId
LOCAL lnFromUserId
LOCAL lnFromMailBoxId
LOCAL lnFromUserType
LOCAL lcFromUserName
LOCAL lcFromUserFullName
LOCAL lcFromUserAccountName
LOCAL lcFromUserAccountTitle
LOCAL lnToUserId
LOCAL lnToUserType
LOCAL lcToUserMailboxId
LOCAL lcToUserName
LOCAL lcToUserFullName
LOCAL lcEmailAddress
LOCAL lcPassword
LOCAL lcSubject
LOCAL lcPatientMedTunnelId
LOCAL lcBody
LOCAL lcDateReceived
LOCAL lcDisplayDateReceived
LOCAL lnViewCount
LOCAL lcViewedOn
LOCAL lnAttachmentCount
LOCAL lnStatus
LOCAL lnParentMessageId
LOCAL lnDistributionListId
LOCAL lcDistributionListName
LOCAL lcBodyHistory
LOCAL lcReadReceiptCallbackUrl
LOCAL lnSendGlobalNotifications
LOCAL j
LOCAL lnCount_j
LOCAL lnMessageId
LOCAL lcName
LOCAL lcDisplayName
LOCAL lnSize
LOCAL lnWasViewed
LOCAL lcLocation
LOCAL lcUserName
LOCAL lnAccountId
LOCAL lcAccountName
LOCAL lcAccountTitle
LOCAL lcFirstName
LOCAL lcLastName
LOCAL lcLastSentOn
LOCAL lnSendCount
LOCAL lnIsFavorite
LOCAL i
LOCAL lnCount_i

lnSuccess = 0

* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loHttp = CreateObject('Chilkat.Http')

* Implements the following CURL command:

* curl -X GET -k 
*         -H "Authorization:PutAuthorizationTokenHere" 
*         https://server.medtunnel.com/medtunnelmsg/api/Message/GetMailBoxMessages?MailBoxId=623&OnlyMessagesWithAttachments=false&LastMessageId=27812&StartRow=3&RowCount=25&UnReadOnly=false&IncludeAllMailBoxes=false

* Use the following online tool to generate HTTP code from a CURL command
* Convert a cURL Command to HTTP Source Code

loHttp.SetRequestHeader("Authorization","PutAuthorizationTokenHere")

* The mailbox id is contained in the JSON response from the login.
loHttp.SetUrlVar("mailboxId","36965")
loHttp.SetUrlVar("onlyMessagesWithAttachments","false")
loHttp.SetUrlVar("lastMessageId","0")
loHttp.SetUrlVar("startRow","0")
loHttp.SetUrlVar("rowCount","25")
loHttp.SetUrlVar("unReadOnly","false")
loHttp.SetUrlVar("includeAllMailBoxes","false")

loSbResponseBody = CreateObject('Chilkat.StringBuilder')
lnSuccess = loHttp.QuickGetSb("https://server.medtunnel.com/medtunnelmsg/api/Message/GetMailBoxMessages?MailBoxId={$mailboxId}&OnlyMessagesWithAttachments={$onlyMessagesWithAttachments}&LastMessageId={$lastMessageId}&StartRow={$startRow}&RowCount={$rowCount}&UnReadOnly={$unReadOnly}&IncludeAllMailBoxes={$includeAllMailBoxes}",loSbResponseBody)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loSbResponseBody
    CANCEL
ENDIF

loJResp = CreateObject('Chilkat.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loHttp.LastStatus
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
    ? "Response Header:"
    ? loHttp.LastHeader
    ? "Failed."
    RELEASE loHttp
    RELEASE loSbResponseBody
    RELEASE loJResp
    CANCEL
ENDIF

* Sample JSON response:
* (Sample code for parsing the JSON response is shown below)

* {
*   "ReturnCode": 1,
*   "ReturnCodeText": "Success",
*   "Data": "[...]"
* }

* Sample code for parsing the JSON response...
* Use the following online tool to generate parsing code from sample JSON:
* Generate Parsing Code from JSON

lnReturnCode = loJResp.IntOf("ReturnCode")
lcReturnCodeText = loJResp.StringOf("ReturnCodeText")
lcData = loJResp.StringOf("Data")

* The Data contains a JSON array, so load it into a Chilkat JSON array object.
loJarr = CreateObject('Chilkat.JsonArray')
loJarr.Load(lcData)
loJarr.EmitCompact = 0
? loJarr.Emit()

* Sample jsonArray content
* See sample code for parsing this content below..

* [
*   {
*     "Id": 989448,
*     "FromUserId": 36990,
*     "FromMailBoxId": 36965,
*     "FromUserType": 1,
*     "FromUserName": "joe@example",
*     "FromUserFullName": "Joe Smith",
*     "FromUserAccountName": "joe",
*     "FromUserAccountTitle": "Joe's Garage, Inc.",
*     "ToUserId": 36990,
*     "ToUserType": 1,
*     "ToUserMailboxId": "36965",
*     "ToUserName": "joe@example",
*     "ToUserFullName": "Joe Smith",
*     "EmailAddress": "",
*     "Password": "",
*     "Subject": "",
*     "PatientMedTunnelId": "",
*     "Body": "Test",
*     "DateReceived": "4/29/2021 2:48:22 PM",
*     "DisplayDateReceived": "Today  2:48 PM",
*     "ViewCount": 3,
*     "ViewedOn": "04/29/2021  2:52 PM",
*     "AttachmentCount": 1,
*     "AttachmentNames": [
*       {
*         "MessageId": 989448,
*         "Id": 424857,
*         "Name": "starfish.jpg.35910fe9-4118-414c-a845-4d092ca6e784",
*         "DisplayName": "starfish.jpg",
*         "Size": 6229,
*         "WasViewed": true,
*         "ViewedOn": "4/29/2021 2:52:19 PM",
*         "ViewCount": 1,
*         "Location": "Default"
*       }
*     ],
*     "AllRecipients": [
*       {
*         "Id": 989448,
*         "UserName": "joe@example",
*         "AccountId": 0,
*         "AccountName": "joe",
*         "AccountTitle": null,
*         "FirstName": "Joe",
*         "LastName": "Smith",
*         "EmailAddress": null,
*         "LastSentOn": null,
*         "SendCount": 0,
*         "IsFavorite": false
*       }
*     ],
*     "Status": 3,
*     "ParentMessageId": 989448,
*     "DistributionListId": 0,
*     "DistributionListName": "",
*     "BodyHistory": "",
*     "ReadReceiptCallbackUrl": null,
*     "SendGlobalNotifications": false
*   },
*   {
*     "Id": 989445,
*     "FromUserId": 36990,
*     "FromMailBoxId": 36965,
*     "FromUserType": 1,
*     "FromUserName": "joe@example",
*     "FromUserFullName": "Joe Smith",
*     "FromUserAccountName": "joe",
*     "FromUserAccountTitle": "Joe's Garage, Inc.",
*     "ToUserId": 36990,
*     "ToUserType": 1,
*     "ToUserMailboxId": "36965",
*     "ToUserName": "joe@example",
*     "ToUserFullName": "Joe Smith",
*     "EmailAddress": "",
*     "Password": "",
*     "Subject": "",
*     "PatientMedTunnelId": "",
*     "Body": "Test",
*     "DateReceived": "4/29/2021 2:47:36 PM",
*     "DisplayDateReceived": "Today  2:47 PM",
*     "ViewCount": 1,
*     "ViewedOn": "",
*     "AttachmentCount": 1,
*     "AttachmentNames": [
*       {
*         "MessageId": 989445,
*         "Id": 424856,
*         "Name": "starfish.jpg.c7dd04d8-43f2-4d86-af71-64f411bd5dfb",
*         "DisplayName": "starfish.jpg",
*         "Size": 6229,
*         "WasViewed": false,
*         "ViewedOn": "",
*         "ViewCount": 0,
*         "Location": "Default"
*       }
*     ],
*     "AllRecipients": [
*       {
*         "Id": 989445,
*         "UserName": "joe@example",
*         "AccountId": 0,
*         "AccountName": "joe",
*         "AccountTitle": null,
*         "FirstName": "Joe",
*         "LastName": "Smith",
*         "EmailAddress": null,
*         "LastSentOn": null,
*         "SendCount": 0,
*         "IsFavorite": false
*       }
*     ],
*     "Status": 3,
*     "ParentMessageId": 989445,
*     "DistributionListId": 0,
*     "DistributionListName": "",
*     "BodyHistory": "",
*     "ReadReceiptCallbackUrl": null,
*     "SendGlobalNotifications": false
*   },
*   {
*     "Id": 989436,
*     "FromUserId": 36990,
*     "FromMailBoxId": 36965,
*     "FromUserType": 1,
*     "FromUserName": "joe@example",
*     "FromUserFullName": "Joe Smith",
*     "FromUserAccountName": "joe",
*     "FromUserAccountTitle": "Joe's Garage, Inc.",
*     "ToUserId": 36990,
*     "ToUserType": 1,
*     "ToUserMailboxId": "36965",
*     "ToUserName": "joe@example",
*     "ToUserFullName": "Joe Smith",
*     "EmailAddress": "",
*     "Password": "",
*     "Subject": "",
*     "PatientMedTunnelId": "",
*     "Body": "Test",
*     "DateReceived": "4/29/2021 2:29:18 PM",
*     "DisplayDateReceived": "Today  2:29 PM",
*     "ViewCount": 1,
*     "ViewedOn": "",
*     "AttachmentCount": 0,
*     "AttachmentNames": [
*     ],
*     "AllRecipients": [
*       {
*         "Id": 989436,
*         "UserName": "joe@example",
*         "AccountId": 0,
*         "AccountName": "joe",
*         "AccountTitle": null,
*         "FirstName": "Joe",
*         "LastName": "Smith",
*         "EmailAddress": null,
*         "LastSentOn": null,
*         "SendCount": 0,
*         "IsFavorite": false
*       }
*     ],
*     "Status": 3,
*     "ParentMessageId": 989436,
*     "DistributionListId": 0,
*     "DistributionListName": "",
*     "BodyHistory": "",
*     "ReadReceiptCallbackUrl": null,
*     "SendGlobalNotifications": false
*   },
*   {
*     "Id": 989432,
*     "FromUserId": 36990,
*     "FromMailBoxId": 36965,
*     "FromUserType": 1,
*     "FromUserName": "joe@example",
*     "FromUserFullName": "Joe Smith",
*     "FromUserAccountName": "joe",
*     "FromUserAccountTitle": "Joe's Garage, Inc.",
*     "ToUserId": 36990,
*     "ToUserType": 1,
*     "ToUserMailboxId": "36965",
*     "ToUserName": "joe@example",
*     "ToUserFullName": "Joe Smith",
*     "EmailAddress": "",
*     "Password": "",
*     "Subject": "",
*     "PatientMedTunnelId": "",
*     "Body": "Test",
*     "DateReceived": "4/29/2021 2:25:27 PM",
*     "DisplayDateReceived": "Today  2:25 PM",
*     "ViewCount": 1,
*     "ViewedOn": "",
*     "AttachmentCount": 0,
*     "AttachmentNames": [
*     ],
*     "AllRecipients": [
*       {
*         "Id": 989432,
*         "UserName": "joe@example",
*         "AccountId": 0,
*         "AccountName": "joe",
*         "AccountTitle": null,
*         "FirstName": "Joe",
*         "LastName": "Smith",
*         "EmailAddress": null,
*         "LastSentOn": null,
*         "SendCount": 0,
*         "IsFavorite": false
*       }
*     ],
*     "Status": 3,
*     "ParentMessageId": 989432,
*     "DistributionListId": 0,
*     "DistributionListName": "",
*     "BodyHistory": "",
*     "ReadReceiptCallbackUrl": null,
*     "SendGlobalNotifications": false
*   },
*   {
*     "Id": 989251,
*     "FromUserId": 1,
*     "FromMailBoxId": 1,
*     "FromUserType": 100,
*     "FromUserName": "MedTunnel",
*     "FromUserFullName": "System Account",
*     "FromUserAccountName": "MedTunnel",
*     "FromUserAccountTitle": "",
*     "ToUserId": 36990,
*     "ToUserType": 1,
*     "ToUserMailboxId": "36965",
*     "ToUserName": "joe@example",
*     "ToUserFullName": "Joe Smith",
*     "EmailAddress": "",
*     "Password": "",
*     "Subject": "",
*     "PatientMedTunnelId": "",
*     "Body": "Welcome to MedTunnel! \r\n\r\nNow that you have signed up and activated your account, you are ready to start sending secure messages and documents using MedTunnel. So, what is the next step? It is recommended that you watch our training videos to learn how to use MedTunnel. There are 3 different client applications that you can use to access MedTunnel: \r\n\r\n1. If you are an administrator for a group, you should start out with the \u003cb\u003eGroup Account Administrators Video\u003c/b\u003e (\u003ca href=\"https://vimeo.com/104428633\" target=\"_blank\"\u003ehttps://vimeo.com/104428633\u003c/a\u003e). This video shows you the best practices for implementing MedTunnel into your practice, as well as how to add additional users. \r\n\r\n2. Next, watch the \u003cb\u003eMedTunnel Desktop App Video\u003c/b\u003e (\u003ca href=\"https://vimeo.com/103833157\" target=\"_blank\"\u003ehttps://vimeo.com/103833157\u003c/a\u003e). This video shows how to use the MedTunnel Desktop App - available as a free download for both PC and Mac. The Desktop App has 2 main features:\r\n\r\n\t- The \u003cb\u003ePrint-To-Send\u003c/b\u003e feature allows you to print from any application to a virtual printer to conveniently send documents.\r\n\r\n\t- The \u003cb\u003eAutoDownloader\u003c/b\u003e feature allows you to automatically download messages to your local hard drive for instant integration into your existing systems.\r\n\r\n3. Finally, there are two other client videos you can watch. The \u003cb\u003eWeb Client Demo Video\u003c/b\u003e (\u003ca href=\"https://vimeo.com/104434128\" target=\"_blank\"\u003ehttps://vimeo.com/104434128\u003c/a\u003e) shows you how to access MedTunnel via a browser on any device. The \u003cb\u003eMobile App Demo Video\u003c/b\u003e (\u003ca href=\"https://vimeo.com/104065728\" target=\"_blank\"\u003ehttps://vimeo.com/104065728\u003c/a\u003e) shows you how to access MedTunnel from our free Mobile App. \r\n\r\nHere are some useful links. \r\n\r\nMedTunnel Support Page: \u003ca href=\"http://www.medtunnel.com/support\" target=\"_blank\"\u003ehttp://www.medtunnel.com/support\u003c/a\u003e. The support page contains links to download the Desktop and Mobile Apps as well as other support related content. \r\n\r\nFAQs Page: \u003ca href=\"http://www.medtunnel.com/faqs\" target=\"_blank\"\u003ehttp://www.medtunnel.com/faqs\u003c/a\u003e. The FAQs page contains the most frequently asked questions about MedTunnel. \r\n\r\nIf you have any other questions or would like personalized service on using MedTunnel, you can contact us by simply logging in to your MedTunnel account and sending a message to MedTunnel ID: \u003cb\u003esupport\u003c/b\u003e.   You can also contact us by sending an email to support@medtunnel.com. \r\n\r\nAgain - Welcome to MedTunnel! We truly hope you enjoy your MedTunnel experience!\r\n\r\nThe MedTunnel Team\r\n",
*     "DateReceived": "4/28/2021 10:58:30 PM",
*     "DisplayDateReceived": "04/28/2021 10:58 PM",
*     "ViewCount": 1,
*     "ViewedOn": "",
*     "AttachmentCount": 0,
*     "AttachmentNames": [
*     ],
*     "AllRecipients": [
*       {
*         "Id": 989251,
*         "UserName": "joe@example",
*         "AccountId": 0,
*         "AccountName": "joe",
*         "AccountTitle": null,
*         "FirstName": "Joe",
*         "LastName": "Smith",
*         "EmailAddress": null,
*         "LastSentOn": null,
*         "SendCount": 0,
*         "IsFavorite": false
*       }
*     ],
*     "Status": 3,
*     "ParentMessageId": 989251,
*     "DistributionListId": 0,
*     "DistributionListName": "",
*     "BodyHistory": "",
*     "ReadReceiptCallbackUrl": null,
*     "SendGlobalNotifications": false
*   }
* ]

i = 0
lnCount_i = loJarr.Size
DO WHILE i < lnCount_i
    loJson = loJarr.ObjectAt(i)
    lnId = loJson.IntOf("Id")
    lnFromUserId = loJson.IntOf("FromUserId")
    lnFromMailBoxId = loJson.IntOf("FromMailBoxId")
    lnFromUserType = loJson.IntOf("FromUserType")
    lcFromUserName = loJson.StringOf("FromUserName")
    lcFromUserFullName = loJson.StringOf("FromUserFullName")
    lcFromUserAccountName = loJson.StringOf("FromUserAccountName")
    lcFromUserAccountTitle = loJson.StringOf("FromUserAccountTitle")
    lnToUserId = loJson.IntOf("ToUserId")
    lnToUserType = loJson.IntOf("ToUserType")
    lcToUserMailboxId = loJson.StringOf("ToUserMailboxId")
    lcToUserName = loJson.StringOf("ToUserName")
    lcToUserFullName = loJson.StringOf("ToUserFullName")
    lcEmailAddress = loJson.StringOf("EmailAddress")
    lcPassword = loJson.StringOf("Password")
    lcSubject = loJson.StringOf("Subject")
    lcPatientMedTunnelId = loJson.StringOf("PatientMedTunnelId")
    lcBody = loJson.StringOf("Body")
    lcDateReceived = loJson.StringOf("DateReceived")
    lcDisplayDateReceived = loJson.StringOf("DisplayDateReceived")
    lnViewCount = loJson.IntOf("ViewCount")
    lcViewedOn = loJson.StringOf("ViewedOn")
    lnAttachmentCount = loJson.IntOf("AttachmentCount")
    lnStatus = loJson.IntOf("Status")
    lnParentMessageId = loJson.IntOf("ParentMessageId")
    lnDistributionListId = loJson.IntOf("DistributionListId")
    lcDistributionListName = loJson.StringOf("DistributionListName")
    lcBodyHistory = loJson.StringOf("BodyHistory")
    lcReadReceiptCallbackUrl = loJson.StringOf("ReadReceiptCallbackUrl")
    lnSendGlobalNotifications = loJson.BoolOf("SendGlobalNotifications")
    j = 0
    lnCount_j = loJson.SizeOfArray("AttachmentNames")
    DO WHILE j < lnCount_j
        loJson.J = j
        lnMessageId = loJson.IntOf("AttachmentNames[j].MessageId")
        lnId = loJson.IntOf("AttachmentNames[j].Id")
        lcName = loJson.StringOf("AttachmentNames[j].Name")
        lcDisplayName = loJson.StringOf("AttachmentNames[j].DisplayName")
        lnSize = loJson.IntOf("AttachmentNames[j].Size")
        lnWasViewed = loJson.BoolOf("AttachmentNames[j].WasViewed")
        lcViewedOn = loJson.StringOf("AttachmentNames[j].ViewedOn")
        lnViewCount = loJson.IntOf("AttachmentNames[j].ViewCount")
        lcLocation = loJson.StringOf("AttachmentNames[j].Location")
        j = j + 1
    ENDDO
    j = 0
    lnCount_j = loJson.SizeOfArray("AllRecipients")
    DO WHILE j < lnCount_j
        loJson.J = j
        lnId = loJson.IntOf("AllRecipients[j].Id")
        lcUserName = loJson.StringOf("AllRecipients[j].UserName")
        lnAccountId = loJson.IntOf("AllRecipients[j].AccountId")
        lcAccountName = loJson.StringOf("AllRecipients[j].AccountName")
        lcAccountTitle = loJson.StringOf("AllRecipients[j].AccountTitle")
        lcFirstName = loJson.StringOf("AllRecipients[j].FirstName")
        lcLastName = loJson.StringOf("AllRecipients[j].LastName")
        lcEmailAddress = loJson.StringOf("AllRecipients[j].EmailAddress")
        lcLastSentOn = loJson.StringOf("AllRecipients[j].LastSentOn")
        lnSendCount = loJson.IntOf("AllRecipients[j].SendCount")
        lnIsFavorite = loJson.BoolOf("AllRecipients[j].IsFavorite")
        j = j + 1
    ENDDO
    RELEASE loJson
    i = i + 1
ENDDO

RELEASE loHttp
RELEASE loSbResponseBody
RELEASE loJResp
RELEASE loJarr