# Get boarding app notes and events > Learn how to see an application's notes and events via the Payabli API To access notes and events on a boarding application via the API, you can send a GET request to `/Boarding/read/{appId}`. ```bash Get app with appid 352 curl --request GET \ --url https://api-sandbox.payabli.com/api/Boarding/read/352 \ --header 'requestToken: ' ``` In the response, the notes associated with the application are returned in the `messages` array. The application's events are returned in `generalEvents` array. ```json Application events // Response truncated to show only the generalEvents array "generalEvents": [ { "description": "Created", "eventTime": "2022-06-17T16:35:21.1539528+00:00", "refData": null, "extraData": null, "source": null }, { "description": "Updated Status", "eventTime": "2022-06-17T16:35:22.0854265+00:00", "refData": "1", "extraData": null, "source": null } ], ``` ```json Application messages // Response truncated to show only the messages array "messages": [ { "id": 261, "roomId": 6, "userId": 104, "userName": "admin", "content": "Requested business license and bank statements.", "createdAt": "2023-10-30T19:37:20.997", "messageType": 1, "originalApplicationStatus": -99, "currentApplicationStatus": 3, "originalApplicationSubStatus": 0, "currentApplicationSubStatus": 2 }, { "id": 231, "roomId": 6, "userId": 104, "userName": "admin", "content": "TIN Failed, Need to reach out to merchant", "createdAt": "2023-10-25T18:41:55.94", "messageType": 1, "originalApplicationStatus": -99, "currentApplicationStatus": 3, "originalApplicationSubStatus": 0, "currentApplicationSubStatus": 3 }, { "id": 3, "roomId": 6, "userId": 5, "userName": "admin", "content": "Application approved, finalizing agreement.", "createdAt": "2023-09-09T00:00:00", "messageType": 1, "originalApplicationStatus": -99, "currentApplicationStatus": 7, "originalApplicationSubStatus": 0, "currentApplicationSubStatus": 5 } ] ``` ## Related resources See these related resources to help you get the most out of Payabli. * **[Boarding statuses reference](/guides/pay-ops-boarding-status-reference)** - Learn about statuses and substatuses during the merchant boarding process * **[Paypoint statuses](/guides/pay-ops-paypoint-status-reference)** - Learn about the different statuses of paypoints