Description
This endpoint returns a single case note reply based on Reply ID associated to the Case ID and Note ID values passed in the request.
| Service Name | Get Case Note Reply by Reply ID |
| Service Type | REST |
| Method | GET |
| UAT (Sandbox) URL |
https://integration.uat.marley.ai/api/v2/case/{caseID}/notes/{noteID}/replies/{replyID} |
| Production URL | https://integration.himarley.io/api/v2/case/{caseID}/notes/{noteID}/replies/{replyID} |
| Technical Documentation | View technical documentation with sample request and response payloads hosted on Postman. |
Table of Contents
API Request
Flow
- Send API request with the path parameter of the Hi Marley Case ID and Note ID.
- Hi Marley receives the request and validates the Case ID and Note ID exist.
- Hi Marley responds with the Note data associated with the passed Case ID and Note value.
Request Example
https://integration.uat.marley.ai/api/v2/case/c808ba82-e2cb-4a92-9344-b924d79d2308/
notes/bf1559f6-7f57-4d07-bb18-5a7eb986310e/replies/1b6e5320-db96-459a-b473-26e6a71228b1
Request Path Breakdown
| Property | Values | Description |
Type |
Required | Example | Validation |
| caseId | The Case ID associated with the Hi Marley case | string |
true |
c808ba82-e2cb-4a92-9344-b924d79d2308 |
caseId exists within Hi Marley. |
|
| noteId | The Note ID within the Hi Marley case | string |
true |
bf1559f6-7f57-4d07-bb18-5a7eb986310e |
noteId exists within the Hi Marley case |
|
| replyId | The Reply ID automatically generated by Hi Marley | string |
true |
1b6e5320-db96-459a-b473-26e6a71228b1 |
replyId exists and is associated with the noteId |
API Response
Response Payload Example
{
"archived": false,
"mentionedUserIds": [
"643bb2f8-f82d-4e71-94f0-fad78172024a"
],
"plainText": "Hello @TestUser how are you?",
"id": "1b6e5320-db96-459a-b473-26e6a71228b1"
}
Response Fields Breakdown
| Property | Element | Description | Type | Example |
| archived | Indicates whether the note has been deleted or not. | boolean | "archived": false | |
| mentionedUserIds | id | Hi Marley internally generated id of the mentioned user | array |
"mentionedUserIds": [ "5bfa662f-2026-4bfa-be39-57a8ae7b083f" ] |
| authorId | id | Hi Marley internally generated id of the author | string | "authorId": "643bb2f8-f82d-4e71-94f0-fad78172024a" |
| plainText | The message body of the case note. | string | "plainText": "Hello @ExampleUser how's your day going?" | |
| id | id | The reply id for the reply that was retrieved. | string | "id": "05b620d7-d4f6-46fa-b1d0-ede778b0fd99" |
Comments
0 comments
Please sign in to leave a comment.