

In Relativity, the Short Message Viewer displays messages sent through SMS such as iMessage and instant messenger services such as Skype Messenger, Slack, and others. For more information, see Short Message Viewer on the Relativity
The Short Message Viewer API exposes endpoints for retrieving the JSON, attachments, and participant information for short messages. It also provides endpoints for validating the Relativity Short Message Format (RSMF)
You can also use the Short Message Viewer Manager service through .NET. For more information, see Short Message Viewer Manager (.NET).
Review the following guidelines for working with the Short Message Viewer service.
The URLs for REST endpoints contain path parameters that you need to set before making a call:
For example, you can use the following URL to retrieve the JSON representation for a short message document:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/workspace/{workspaceID}/short-message/{documentID}/message-json
Set the path parameters as follows:
To retrieve the JSON representation for a short message document, send a GET request with a URL in the following format:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/workspace/{workspaceID}/short-message/{documentID}/message-json
The fields in the JSON response correspond to those in the rsmf_manifest.json file. For field definitions, see rsmf_manifest.json file on the Relativity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"version": "1.00",
"participants": [
{
"display": "Jane Doe",
"id": "001"
},
{
"display": "John Doe",
"id": "002"
}
],
"conversations": [
{
"display": "Slack conversation with three replies",
"id": "1234",
"platform": "slack",
"type": "channel",
"participants": [
"001",
"002"
]
}
],
"events": [
{
"id": "007",
"participant": "001",
"timestamp": "2004-03-11T17:04:19",
"type": "message",
"body": "I am a parent event :alien:",
"conversation": "1234",
"importance": "normal"
},
{
"id": "008",
"participant": "002",
"timestamp": "2004-03-12T17:33:56",
"type": "message",
"deleted": false,
"body": "First reply",
"conversation": "1234",
"parent": "007"
}
]
}
To retrieve attachment information associated with a short message document, send a POST request with a URL in the following format:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/workspace/{workspaceID}/short-message/{documentID}/attachment-info
The request includes the following field:
1
2
3
4
5
6
{
"attachmentIDs": [
"1040812.jpg",
"Powerpoint2016.pptx"
]
}
The response is an array of AttachmentInfo objects. These objects contain the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
[
{
"AttachmentID": "1040812.jpg",
"DocumentArtifactID": 1439830,
"FileGuid": "2746d6da-5a12-445c-9b53-51204697dd53"
},
{
"AttachmentID": "Powerpoint2016.pptx",
"DocumentArtifactID": 1439831,
"FileGuid": "355a63ab-2266-49c9-a7aa-e8efcaab4cfb"
}
]
You can retrieve entity information for a participant in a short message conversation. An Entity object links people, companies, organizational groups, and their metadata. For more information, see Entity object on the Relativity
Send a POST request with a URL in the following format:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/workspaces/{workspaceID}/short-message/participant-info
The response contains the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"participantRequests": [
{
"Id":"001",
"Name":"Jane Doe",
"Email":"Jane.Doe@relativity.com"
},
{
"Id":"002",
"Name":"John Doe"
}
]
}
The response is an array of ParticipantResponseInfo objects. A ParticipantResponseInfo object contains the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
{
"ParticipantID": "001",
"EntityName": "Jane Doe",
"Aliases": [
"Doe, Jane"
],
"Url": "exampleentityforjane.com"
},
{
"ParticipantID ": "002",
"EntityName": "John Doe",
"Aliases": [
"Doe, John",
"John.Doe@relativity.com"
],
"Url": "exampleentityforjohn.com"
}
]
You can verify whether a specific file or document has a valid RSMF. For more information, see Relativity Short Message Format on the Relativity
To validate the RSMF for a file, send a POST request with a URL in the following format:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/short-message/validate
The request contains the following fields:
The following code sample illustrates how to upload a file for validation using JavaScript:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const fileinput = document.getElementById("file_input");
fileinput.onchange = event => {
currentFile = event.target.files[0];
};
const metaData = {
fileName: currentFile.name
};
const formData = new FormData();
formData.append("file", currentFile);
formData.append("", new Blob([JSON.stringify(metaData)], { type: "application/json" }));
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = () => {
if (xhr.readyState === 4) {
const response = JSON.parse(xhr.response);
}
}
xhr.open('post', url);
xhr.setRequestHeader("X-CSRF-Header", csrfToken);
xhr.send(formData);
The response is an RSMFValidationResponse containing the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"Status": "Failed",
"Errors": [
{
"LineNumber": 46,
"LinePosition": 3,
"Message": "Invalid conversation at line 46 position 3",
"Submessages": [
"Missing Required Property: \"id\""
]
},
{
"LineNumber": 66,
"LinePosition": 3,
"Message": "Invalid conversation at line 66 position 3",
"Submessages": [
"Property \"type\" must have one of the following values: {direct, channel}"
]
}
],
"Warnings": []
}
To validate the RSMF for a document, send a GET request with a URL in the following format:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/workspaces/{workspaceID}/short-message/{documentID}/validate
The request body is empty.
The response is an RSMFValidationResponse containing the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"Status": "Failed",
"Errors": [
{
"LineNumber": 46,
"LinePosition": 3,
"Message": "Invalid conversation at line 46 position 3",
"Submessages": [
"Missing Required Property: \"id\""
]
},
{
"LineNumber": 66,
"LinePosition": 3,
"Message": "Invalid conversation at line 66 position 3",
"Submessages": [
"Property \"type\" must have one of the following values: {direct, channel}"
]
}
],
"Warnings": []
}
To create a new document based on a subset of events in a short message document, send a POST request with a URL in the following format:
1
<host>Relativity.REST/api/relativity-documentViewer/{versionNumber}/workspace/{workspaceID}/short-message/{documentID}/slice
The request contains the following fields:
1
2
3
4
5
6
7
8
9
10
11
{
"sliceRequest": {
"EventIndexes": [0,2,5],
"Options": {
"EmailConfirmation":true,
"PreserveAllParticipants":true,
"CreateAttachments":true,
"SourceLayoutID":1036634
}
}
}
When the request is successfully submitted, the response returns the status code of 200. The user receives an email message when the new short message document is created.
On this page
Why was this not helpful?
Check one that applies.
Thank you for your feedback.
Want to tell us more?
Great!
Additional Resources |
|||
DevHelp Community | GitHub | Release Notes | NuGet |