

The Object Manager service provides you with the ability to programmatically work with RDOs and Document objects. It exposes endpoints for performing the following tasks:
Sample use cases for the Object Manager service include:
You can also use the Object Manager service through .NET, which supports the use of progress indicators and cancellation tokens for queries. For more information, see Object Manager (.NET).
Note: Object Manager consumers can not exceed 1,000 requests per minute, per web server that the Object Manager is hosted on. For more information, see Rate Limit.
The Object Manager has a set rate limit of 1,000 requests per minute, per web server. Exceeding this limit will result in a 429 Too many Requests error message.
In order for your application to successfully handle the Object Manager’s rate limit, the application must:
Note: If no header is sent, the request will be limited as part of an unknown generic bucket which could result in unpredictable limiting.
The following list of headers can be acted upon for the Object Manager’s rate limit:
In the following code sample, the HttpClient is being used to make a REST request to the Object Manager QuerySlim endpoint. If a 429-status code is returned, a specific error message is thrown indicating that the caller should be able to retry again after the number of seconds indicated in the RateLimit-Reset header.
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
public async Task<QueryResultSlim> ExecuteObjectManagerQuerySlimREST(string inputJson)
{
QueryResultSlim result = null;
int workspaceID = Helper.GetActiveCaseID();
PopulateDefaultRequestHeaders(client);
string url = $"workspace/{workspaceID}/object/queryslim";
var response = await _httpClientWrapper.PostAsync(url, new StringContent(inputJson, Encoding.UTF8, "application/json"));
if (response.IsSuccessStatusCode)
{
var content = await response.Content.ReadAsStringAsync();
result = JsonConvert.DeserializeObject<QueryResultSlim>(content);
}
else if ((int)response.StatusCode == 429 && response.Headers.Contains("RateLimit-Reset"))
{
int delta = int.Parse(response.Headers.GetValues("RateLimit-Reset").FirstOrDefault());
throw new Exception($"The system is unable to complete your request at this time. Please try again in {delta} seconds.");
}
else
{
throw new Exception($"Error: {response.StatusCode}");
}
return result;
}
To test if the application is handling the 429 Too many Requests response correctly, complete the following steps:
Ensure your application sends its application GUID in the X-Kepler-Referrer header with every request.
Set the application to exceed 1,000 request a minute.
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
[Test]
public void ExecuteObjectManagerQuerySlim_ThrowsCorrectException_For_429_StatusCode()
{
// Arrange
int resetSeconds = 30;
var response = new HttpResponseMessage
{
StatusCode = (HttpStatusCode)429,
Content = new StringContent("API Limit exceeded."),
};
response.Headers.Add("RateLimit-Reset", resetSeconds.ToString());
var httpClientWrapper = Substitute.For<IHttpClientWrapper>();
httpClientWrapper.PostAsync(Arg.Any<string>(), Arg.Any<StringContent>())
.Returns(Task.FromResult(response));
var helper = Substitute.For<IEHHelper>();
helper.GetActiveCaseID().Returns(1234567);
var sut = new TestPreSaveEventHandler(helper, httpClientWrapper);
// Assert & Act
var ex = Assert.ThrowsAsync<Exception>(async () => await sut.ExecuteObjectManagerQuerySlim("{}"));
Assert.That(ex.Message, Is.EqualTo($"The system is unable to complete your request at this time. Please try again in {resetSeconds} seconds."));
}
Review the following guidelines for working with this service.
The URLs for REST endpoints contain path parameters that you need to set before making a call:
You can use the Postman sample file to become familiar with making calls to endpoints on the service. To download the sample file, click Object Manager Postman file.
To get started with Postman, complete these steps:
You interact with the Object Manager service by sending an HTTP request that uses the POST method. See the following base URL for this service:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/
You can use the following .NET code samples as the REST client for making calls with the Object Manager service.
This sample code illustrates how to perform the following tasks for an update operation:
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
public async Task<UpdateResult> UpdateExample()
{
UpdateResult result = null;
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Add("X-CSRF-Header", "-");
client.DefaultRequestHeaders.Add("Authorization",
"Basic " + Convert.ToBase64String(Encoding.GetEncoding("ISO-8859-1").GetBytes("test@test.com:SomePassword")));
client.DefaultRequestHeaders.Add("X-Kepler-Version", "2.0");
client.BaseAddress = new Uri("https://localhost/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/");
var workspaceId = 1016847;
var objectArtifactID = 1039331;
var fieldArtifactID = 1039320;
var valueToUpdate = "New Value";
string inputJSON = $"{{\"request\":{{\"Object\":{\"{artifactId\":{objectArtifactID}}},\"FieldValues\":[{{\"Field\":{{\"ArtifactID\":{fieldArtifactID}}},\"Value\":\"{valueToUpdate}\"}}]}}}}}}";
var url = $"workspace/{workspaceId}/object/update";
var response = await client.PostAsync(url, new StringContent(inputJSON, Encoding.UTF8, "application/json"));
response.EnsureSuccessStatusCode();
var content = await response.Content.ReadAsStringAsync();
result = JsonConvert.DeserializeObject<UpdateResult>(content);
}
return result;
}
To create an RDO with a specific set of fields, send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/create
The body of the request for creating an RDO must contain the following fields:
Note: If you do not specify a parent object, Relativity defaults to the System object as the parent.
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
{
"request":{
"ObjectType":{
"ArtifactTypeID":1000042
},
"ParentObject":{
"ArtifactID":1049257
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039343
},
"Value":"Third"
},
{
"Field":{
"ArtifactID":1039338
},
"Value":{
"ArtifactID":1039441
}
},
{
"Field":{
"ArtifactID":1039345
},
"Value":[
{
"ArtifactID":1039346
},
{
"ArtifactID":1039347
},
{
"ArtifactID":1039350
}
]
}
]
}
}
The response contains 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"Object":{
"ParentObject":{
"ArtifactID":1003663
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039343,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
],
"Name":"FixedLengthTextField",
"ViewFieldID":0
},
"Value":"Third"
},
{
"Field":{
"ArtifactID":1039338,
"FieldCategory":"Generic",
"FieldType":"SingleObject",
"Guids":[
],
"Name":"SingleObjectField",
"ViewFieldID":0
},
"Value":{
"ArtifactID":1039441,
"Guids":[
],
"Name":"Custom Object 1"
}
},
{
"Field":{
"ArtifactID":1039345,
"FieldCategory":"Generic",
"FieldType":"MultipleChoice",
"Guids":[
],
"Name":"MultiChoiceField",
"ViewFieldID":0
},
"Value":[
{
"ArtifactID":1039346,
"Guids":[
],
"Name":"MultiChoiceField_Choice1"
},
{
"ArtifactID":1039347,
"Guids":[
],
"Name":"MultiChoiceField_Choice2"
},
{
"ArtifactID":1039350,
"Guids":[
],
"Name":"MultiChoiceField_Choice3"
}
]
}
],
"ArtifactID":1039443,
"Guids":[
]
},
"EventHandlerStatuses":[
]
}
You can mass create multiple RDOs of the same type and specify the values set on the fields that they contain. Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/create
Note: If you specify an identifier that’s already in the database, an exception will not be thrown. Instead, the Success field in the JSON response is set to false. Always check the value of the Success field in the JSON response as a best practice.
The request must include the following fields:
Note: If you do not specify a parent object, Relativity defaults to the System object as the parent.
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"massRequest":{
"ParentObject":{
"ArtifactID":1003663
},
"ObjectType":{
"ArtifactTypeID":1000043
},
"Fields":[
{
"ArtifactID":1040132
},
{
"ArtifactID":1041596
},
{
"ArtifactID":1041597
},
{
"ArtifactID":1041598
}
],
"ValueLists":[
[
"Identifier field value 0",
"dummy value 0",
25,
{
"ArtifactID":1253334
}
],
[
"Identifier field value 1",
"dummy value 0",
56,
{
"ArtifactID":1253324
}
],
[
"Identifier field value 2",
"dummy value 0",
90,
{
"ArtifactID":1253335
}
],
[
"Identifier field value 3",
"dummy value 0",
14,
{
"ArtifactID":1253330
}
],
[
"Identifier field value 4",
"dummy value 0",
7,
{
"ArtifactID":1253322
}
],
[
"Identifier field value 5",
"dummy value 0",
23,
{
"ArtifactID":1253315
}
]
]
}
}
The response contains the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"Success":true,
"Message":"Created 5 objects.",
"Objects":[
{
"ArtifactID":1238950
},
{
"ArtifactID":1238951
},
{
"ArtifactID":1238952
},
{
"ArtifactID":1238953
},
{
"ArtifactID":1238954
}
]
}
To read a specified subset of field values on a Document object or an RDO, send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/read
The request must contain the following fields unless specifically identified as optional:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"Request":{
"Object":{
"ArtifactID":1038163
},
"Fields":[
{
"ArtifactID":1003667
},
{
"ArtifactID":1003668
},
{
"ArtifactID":1003669
},
{
"ArtifactID":1003671
},
{
"ArtifactID":1003672
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
{
"Request":{
"Object":{
"ArtifactID":1038163
},
"Fields":[
{
"Name":"Nonrequired Fixed Length"
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"Request":{
"Object":{
"ArtifactID":1040284
},
"Fields":[
{
"ArtifactID":1040299
},
{
"ArtifactID":1040286
}
]
},
"ReadOptions":{
"FieldTypesToReturnAsString":[
"Decimal",
"Currency"
]
}
}
The response contains 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"Message":"",
"Object":{
"ParentObject":{
"ArtifactID":1038155
},
"FieldValues":[
{
"Field":{
"ArtifactID":1003667,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
"2a3f1212-c8ca-4fa9-ad6b-f76c97f05438"
],
"Name":"Control Number",
"ViewFieldID":0
},
"Value":"AZIPPER_0007300"
},
{
"Field":{
"ArtifactID":1003668,
"FieldCategory":"Generic",
"FieldType":"LongText",
"Guids":[
"58d35076-1b1d-43b4-bff4-d6c089de51b2"
],
"Name":"Extracted Text",
"ViewFieldID":0
},
"Value":"From: Piper Greg <Greg.Piper@ENRON.com>\r\nSent: Monday, May 21, 2001 8:25 PM\r\nTo: Zipper Andy <Andy.Zipper@ENRON.com>\r\nSubject: RE: EOL Team Connection to Operations\r\n\r\nI am confident this will work out.\r\n\r\nThanks.\r\n\r\nGP\r\n\r\n -----Original Message-----\r\nFrom: \tZipper, Andy \r\nSent:\tMonday, May 21, 2001 5:54 PM\r\nTo:\tPiper, Greg\r\nSubject:\tFW: EOL Team Connection to Operations\r\n\r\n\r\nFYI\r\n -----Original Message-----\r\nFrom: \tBeck, Sally \r\nSent:\tMonday, May 21, 2001 5:39 PM\r\nTo:\tZipper, Andy\r\nSubject:\tEOL Team Connection to Operations\r\n\r\nI left you a couple of messages with two different assistants today for you to call - am sure that it is a busy Monday. I will send this note so that I don't forget the purpose. With Savita assuming the role previously played by Sheri with regard to the Product Control group, I wanted to underscore the importance of a free flow of information between the EOL team and my operations team. One of the roles that Sheri's team fulfilled was keeping my risk and operations teams apprised of any changes within EOL that can have an impact on bridging to our legacy systems. I may have met Savita once in passing. I checked with Jeff Gossett and Stacey White, risk leads over gas and power, respectively, and neither one has heard of or met Savita. Although Jennifer Denney will play an active role, I know that she will be out on maternity leave soon, so it is important for Savita to know the right players on the operations team and for them to know her. I will contact Savita directly to make the appropriate introductions. I just wanted your support and encouragement for Savita in making the right connections within operations. --Sally \r\n\r\nagree\r\n\r\ncontracts\r\n\r\n***********\r\n\r\n***********"
},
{
"Field":{
"ArtifactID":1003669,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
"a426bc5e-3420-47b4-a293-4c4848a237d7"
],
"Name":"MD5 Hash",
"ViewFieldID":0
},
"Value":"5D53A6828FDA554B7E756396E3E54533"
},
{
"Field":{
"ArtifactID":1003671,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
"1f036749-a691-4aa8-8cf7-5eeb80c36caf"
],
"Name":"Group Identifier",
"ViewFieldID":0
},
"Value":"AZIPPER_0007300"
},
{
"Field":{
"ArtifactID":1003672,
"FieldCategory":"Generic",
"FieldType":"SingleChoice",
"Guids":[
"2baaca72-790c-4b87-a7d8-c18c45cac63d"
],
"Name":"Has Images",
"ViewFieldID":0
},
"Value":{
"ArtifactID":1034244,
"Guids":[
],
"Name":"No"
}
}
],
"ArtifactID":1038166,
"Guids":[
]
},
"ObjectType":{
"ArtifactID":1035231,
"Name":"Document",
"Guids":[
"15c36703-74ea-4ff8-9dfb-ad30ece7530d"
],
"ArtifactTypeID":10
}
}
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
47
48
49
50
{
"Object":{
"ParentObject":{
"ArtifactID":1003663,
"Guid":"00000000-0000-0000-0000-000000000000"
},
"Name":"Test",
"FieldValues":[
{
"Field":{
"ArtifactID":1040286,
"FieldCategory":"Generic",
"FieldType":"Decimal",
"Guids":[
],
"Name":"Decimal",
"ViewFieldID":0
},
"Value":"123456789.99"
},
{
"Field":{
"ArtifactID":1040299,
"FieldCategory":"Generic",
"FieldType":"Currency",
"Guids":[
],
"Name":"Currency",
"ViewFieldID":0
},
"Value":"123456789.99"
}
],
"ArtifactID":1040284,
"Guids":[
]
},
"ObjectType":{
"ArtifactID":1040282,
"Name":"RDO",
"Guids":[
],
"ArtifactTypeID":1000046
},
"ObjectVersionToken":"636806505690930000"
}
To update field values on a Document object or RDO, send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/update
The request must contain the following fields unless specifically identified as optional:
The body of the request for updating field values on a Document object or RDO must contain the following fields:
Note: You can set the callingContext field to null if your event handlers do not need any context information, but you must include it in the JSON request. Your event handlers must then implement the ICanExecuteWithLimitedContext interface available in the Event Handlers API.
Click a field type in the following list to view sample JSON and information about the field values.
For currency fields, the value may contain commas and two decimal places. Currently, the currency field supports only the culture English (United States).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039465
},
"Value":"5,025.30"
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
For date fields, the values must contain dates in the ISO 8601 format listed in the following JSON sample. When you do not explicitly provide an offset, date fields are saved in the database with an offset relative to server location.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039477
},
"Value":"2017-01-22T18:00:00-07:00"
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
For decimal fields, the values are rounded to the nearest hundredth of a number. Currently, the decimal field supports only the culture English (United States).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039489
},
"Value":1.05
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
The request must include following fields:
1
2
3
4
5
6
7
8
9
{
"field":{
"ArtifactID":1098145
},
"objectRef":{
"ArtifactID":1001637
},
"fileName":"Sample File"
},
Note: If you need to update a long text field that exceeds the length limits of an HTTP request, use the updatelongtextfromstream endpoint. For more information, see Update a long text field using an input stream.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"request": {
"Object": {
"artifactId": 1037989
},
"FieldValues": [{
"Field": {
"ArtifactID": 1039519
},
"Value": "Hello World!"
}]
},
"OperationOptions": {
"CallingContext": {
"Layout": { "ArtifactID": 1042963 }
}
}
}
When you update a child choice field, its ancestors are also updated. The Behavior field indicates whether you are merging or replacing choices as follows:
If you do not set the Behavior field, the service throws a ValidationException when attempting an update operation.
Note: The update operation for field values on a multiple object works the same way on a multiple choice field.
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
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039527
},
"Value":[
{
"ArtifactID":1068132
},
{
"ArtifactID":1068137
}
]
}
]
},
"OperationOptions":{
"UpdateBehavior":"Replace",
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
You can either merge or replace multiple objects. The Behavior field indicates whether you are merging or replacing the object field as follows:
If you do not set the Behavior field, the service throws a ValidationException when attempting an update operation.
Note: The update operation for field values on a multiple object works the same way on a multiple choice field.
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
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1042109
},
"Value":[
{
"ArtifactID":1041033
},
{
"ArtifactID":1041034
}
]
}
]
},
"OperationOptions":{
"UpdateBehavior":"Replace",
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
For a single choice field, the value may be defined by an Artifact ID or GUID. It may also be null.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1041044
},
"Value":{
"ArtifactID":1041033
}
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
For a single object field, the value may be defined by an Artifact ID or GUID. It may also be null.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1041044
},
"Value":{
"ArtifactID":1041033
}
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1042069
},
"Value":{
"ArtifactID":1018788
}
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
For a whole number field, the value cannot contain decimal places.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1041044
},
"Value":1
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
For a Yes/No field, the value may be true, false, or null.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"request":{
"Object":{
"artifactId":1037989
},
"FieldValues":[
{
"Field":{
"ArtifactID":1041044
},
"Value":true
}
]
},
"OperationOptions":{
"CallingContext":{
"Layout":{
"ArtifactID":1042963
}
}
}
}
The response contains the following fields:
1
2
3
4
5
6
7
8
9
10
{
"EventHandlerStatuses":[
{
"Success":true
},
{
"Success":true
}
]
}
You can use the updatelongtextfromstream endpoint to update a single long text field that exceeds the length limits of an HTTP request. This endpoint uses multi-part message for the request, which includes a JSON payload, and a Stream form input. For C# code used to make this request, see Update a long text field using an input stream in .NET.
To call the updatelongtextfromstream endpoint, send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/updatelongtextfromstream
The request must contain the following fields unless specifically identified as optional:
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"updateLongTextFromStreamRequest":{
"Object":{
"ArtifactID":1039314
},
"Field":{
"ArtifactID":0,
"Guid":"",
"Name":"Extracted Text",
"ViewFieldID":0
}
}
}
When the long text field is successfully updated, the response returns the status code of 200.
Complete the following steps to send an UpdateLongTextFromStream request through Postman:
https:<server-name>/relativity.rest/api/Relativity.Objects/workspace/1018581/object/updatelongtextfromstream
{
updateLongTextFromStreamRequest: {
Object: {
ArtifactID: 1040063,
Guid: ""
},
Field: {
ArtifactID: 1040087,
Name: "",
Guid: ""
}
}
}
You can specify the Document objects or RDOs that you want to mass update in the following ways:
Note: To search for data, you can use a variety of query options, including conditions, fields, sorts, and relational fields. These query options have a specific syntax for defining the for defining query conditions. For information about query conditions and options, see Query for resources.
Review the following best practices for mass update operations:
Mass update requests may fail due to multiple artifacts using the same text identifier/name value. We recommend using the single update endpoint in this scenario.
To execute a mass operation, send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/update
Click one of the following options to view sample JSON and field descriptions for a mass update operation. For JSON samples showing how to update a specific field type, see Update fields on a Document object or RDO.
The request must contain the following fields:
Note: For a mass update operation, all the objects must be the same type.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"massRequestByCriteria":{
"ObjectIdentificationCriteria":{
"ObjectType":{
"ArtifactTypeID":1000043
},
"Condition":"'ArtifactID' >= 1041396 And 'ArtifactID' < 1041496 "
},
"FieldValues":[
{
"Field":{
"ArtifactID":1041227
},
"Value":23
}
]
}
}
The request must contain the following fields:
Note: For a mass update operation, all the objects must be the same type.
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
{
"massRequestByObjectIdentifiers":{
"Objects":[
{
"ArtifactID":1043610
},
{
"ArtifactID":1043611
},
{
"ArtifactID":1043612
},
{
"ArtifactID":1043613
},
{
"ArtifactID":1043614
}
],
"FieldValues":[
{
"Field":{
"ArtifactID":1041596
},
"Value":"Text field update"
},
{
"Field":{
"ArtifactID":1041597
},
"Value":23
},
{
"Field":{
"ArtifactID":1041598
},
"Value":{
"ArtifactID":1052345
}
}
]
}
}
The request must contain the following fields:
Note: For a mass update operation, all the objects must be the same type. Make sure that you specify the values in the same order as the Field objects listed in the Fields array.
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"massRequestPerObjects":{
"Fields":[
{
"ArtifactID":1041596
},
{
"ArtifactID":1041597
},
{
"ArtifactID":1041598
}
],
"ObjectValues":[
{
"object":{
"ArtifactID":1043610
},
"values":[
"This is Responsive.",
14,
{
"ArtifactID":1234678
}
]
},
{
"object":{
"ArtifactID":1043611
},
"values":[
"Witness statement",
91,
{
"ArtifactID":1234672
}
]
},
{
"object":{
"ArtifactID":1043612
},
"values":[
"Smoking gun",
75,
{
"ArtifactID":1234670
}
]
},
{
"object":{
"ArtifactID":1043613
},
"values":[
"Further review",
13,
{
"ArtifactID":1234668
}
]
},
{
"object":{
"ArtifactID":1043614
},
"values":[
"This is Responsive.",
2,
{
"ArtifactID":1234655
}
]
}
]
}
}
The response contains the following fields:
1
2
3
4
5
{
"TotalObjectsUpdated":5,
"Success":true,
"Message":""
}
The dependency list endpoint retrieves information about Relativity objects dependent on one or more specific objects selected for deletion. It returns information such as the relationship between the objects and whether a dependent object would be deleted or unlinked. For information about the dependency report in the Relativity UI, see Deleting object dependencies.
Sample use cases for this endpoint include:
Use these guidelines for calling the dependencylist endpoint:
To call the dependencylist endpoint send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/dependencylist
The following .NET code sample illustrates how to make a call to the dependencylist endpoint. Also ,see Client code sample.
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
public async Task<List<Relativity.Shared.{versionNumber}.Models.Dependency>> GetDependencies()
{
List<Relativity.Shared.{versionNumber}.Models.Dependency> result = null;
int workspaceArtifactId = 1234567;
List<Relativity.ObjectManager.{versionNumber}.Models.RelativityObjectRef> objectsToCheck = new List<Relativity.ObjectManager.{versionNumber}.Models.RelativityObjectRef>
{
new Relativity.ObjectManager.{versionNumber}.Models.RelativityObjectRef { ArtifactID = 2345678 },
new Relativity.ObjectManager.{versionNumber}.Models.RelativityObjectRef { ArtifactID = 3456789 },
new Relativity.ObjectManager.{versionNumber}.Models.RelativityObjectRef { ArtifactID = 4567890 }
};
using (HttpClient httpClient = new HttpClient())
{
httpClient.BaseAddress = new Uri($"https://localhost/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceArtifactId}/object/");
// Set the required headers.
httpClient.DefaultRequestHeaders.Add("X-CSRF-Header", "-");
httpClient.DefaultRequestHeaders.Add("Authorization", "Basic c2FtcGxlYWRtaW5AcmVsYXRpdml0eS5yZXN0OlMwbTNwQHNzdzByZA==");
string url = "dependencylist";
var dependencyListRequest = new Relativity.ObjectManager.{versionNumber}.Models.DependencyListByObjectIdentifiersRequest { Objects = objectsToCheck };
string serializedDependencyListRequestt = Newtonsoft.Json.JsonConvert.SerializeObject(dependencyListRequest);
string payload = $"{{ \"request\" : {serializedRequest} }}";
result = await httpClient.PostAsJsonAsync(url, payload);
}
return result;
}
The request must include the following fields:
1
2
3
4
5
6
7
8
{
request: {
Objects: [
{ ArtifactID: 1234567 },
{ ArtifactID: 1234568 }
]
}
}
The response contains 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
23
24
25
26
27
28
29
30
31
32
33
34
[
{
"ObjectType":{
"Secured":false,
"Value":"Parent Object Type"
},
"Action":"Delete",
"Count":{
"Secured":false,
"Value":2
},
"Connection":{
"Secured":false,
"Value":"Parent"
},
"HierarchicLevel":0
},
{
"ObjectType":{
"Secured":false,
"Value":"Child Object Type"
},
"Action":"Delete",
"Count":{
"Secured":false,
"Value":3
},
"Connection":{
"Secured":false,
"Value":"Child of: Parent Object Type"
},
"HierarchicLevel":0
}
]
You can delete a Document object and all its associated files, or an RDO. Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/delete
The request must contain the following fields:
1
2
3
4
5
6
7
{
"Request":{
"Object":{
"ArtifactID":1051263
}
}
}
The response contains the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
{
"Report":{
"DeletedItems":[
{
"ObjectTypeName":"Custom Object",
"Action":"Delete",
"Count":1,
"Connection":"Parent"
}
]
}
}
Note: You should use the Mass Operations Service to mass-delete Document objects or RDOs, instead of using the /object/delete endpoint described here.
You can specify the Document objects or RDOs that you want to mass delete in the following ways:
Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/delete
Click one of the following options to view field descriptions and sample JSON:
The JSON request requires the following fields:
Note: For a mass delete operation, all the objects must be the same type.
1
2
3
4
5
6
7
8
9
10
{
"massRequestByCriteria":{
"ObjectIdentificationCriteria":{
"ObjectType":{
"ArtifactTypeID":1000043
},
"Condition":"'ArtifactID' >= 1041396 And 'ArtifactID' < 1041496"
}
}
}
The JSON request requires the following fields:
Objects - an array containing the Artifact IDs of Document objects or RDOs for deletion. The ArtifactID field contains the identifier of an object that you want to delete. You can also use GUIDs for this purpose.
Note: For a mass delete operation, all the objects must be the same type.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"massRequestByObjectIdentifiers":{
"Objects":[
{
"ArtifactID":1042610
},
{
"ArtifactID":1042611
},
{
"ArtifactID":1042612
},
{
"ArtifactID":1042613
},
{
"ArtifactID":1042614
}
]
}
}
The response contains the following fields:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"Success":true,
"Message":"",
"Report":{
"DeletedItems":[
{
"ObjectTypeName":"Custom Object",
"Action":"Delete",
"Count":5,
"Connection":"Parent"
}
]
}
}
With the Object Manager service, you can query for Workspaces, Documents, RDOs, and system types. This service includes the Query endpoint, which returns detailed information about the field-value pairs returned by the query. The QuerySlim endpoint returns a smaller payload, which saves bandwidth. This endpoint is useful for mobile devices and for displaying tabular data.
To execute a query, send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/query
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/queryslim
Note: To search for data, you can use a variety of query options, including conditions, fields, sorts, and relational fields. These query options have a specific syntax for defining the for defining query conditions. For information about query conditions and options, see Query for resources.
The request must contain the following fields unless specifically identified as optional:
Name - a user-friendly name for the field.
1
2
3
"fields":
{"Name":"*"}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"Request":{
"ObjectType":{
"Guid":"2f816b1d-332d-4eb4-b7c0-2d45c3e12dab"
},
"fields":[
{
"Guid":"6c84e3ee-f3e3-46f6-80c3-28060c2d5eaf"
},
{
"Guid":"5d78c2c7-5a3a-4a62-b192-d4d8b9005ada"
},
{
"Guid":"dd049386-21c1-47de-966c-ba804982e2ca"
}
],
"condition":"'Single Choice Field' ISSET OR 'Relativity Native Type' LIKE 'Email'",
"sorts":[
]
},
"start":1,
"length":100
}
The information in the response depends on whether you executed the search using the Query or QuerySlim endpoint. It includes information about the number of results returned, the start index in the result set, and the object type that was queried.
Note: The Query endpoints are capable of reading data that is being updated in a separate, not-yet-committed database transaction. Utilize the Read endpoint if you want to wait for all in-flight transactions to complete before data is returned.
The response contains the following fields for Query and QuerySlim endpoints:
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"TotalCount":7,
"Objects":[
{
"ParentObject":{
"ArtifactID":1003663
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039421,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
],
"Name":"FixedLengthTextField",
"ViewFieldID":1001625
},
"Value":"object 1"
},
{
"Field":{
"ArtifactID":1038851,
"FieldCategory":"Generic",
"FieldType":"SingleChoice",
"Guids":[
],
"Name":"Single Choice Field",
"ViewFieldID":1001385
},
"Value":{
"ArtifactID":1038858,
"Guids":[
],
"Name":"Choice 1"
}
}
],
"ArtifactID":1039443,
"Guids":[
]
},
{
"ParentObject":{
"ArtifactID":1003663
},
"FieldValues":[
{
"Field":{
"ArtifactID":1039421,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
],
"Name":"FixedLengthTextField",
"ViewFieldID":1001625
},
"Value":"object 2"
},
{
"Field":{
"ArtifactID":1038851,
"FieldCategory":"Generic",
"FieldType":"SingleChoice",
"Guids":[
],
"Name":"Single Choice Field",
"ViewFieldID":1001385
},
"Value":{
"ArtifactID":1038859,
"Guids":[
],
"Name":"Choice 2"
}
}
],
"ArtifactID":1039444,
"Guids":[
]
}
],
"CurrentStartIndex":1,
"ResultCount":2,
"ObjectType":{
"ArtifactID":1039409,
"Name":"Custom Object Type",
"Guids":[
],
"ArtifactTypeID":1000043
}
}
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"TotalCount":7,
"Objects":[
{
"ArtifactID":1039443,
"Values":[
"object 1",
{
"ArtifactID":1038858,
"Guids":[
],
"Name":"Choice 1"
}
]
},
{
"ArtifactID":1039444,
"Values":[
"object 2",
{
"ArtifactID":1038859,
"Guids":[
],
"Name":"Choice 2"
}
]
}
],
"CurrentStartIndex":1,
"ResultCount":2,
"ObjectType":{
"ArtifactID":1039409,
"Name":"Custom Object Type",
"Guids":[
],
"ArtifactTypeID":1000043
},
"Fields":[
{
"ArtifactID":1039421,
"FieldCategory":"Generic",
"FieldType":"FixedLengthText",
"Guids":[
],
"Name":"FixedLengthTextField",
"ViewFieldID":1001625
},
{
"ArtifactID":1038851,
"FieldCategory":"Generic",
"FieldType":"SingleChoice",
"Guids":[
],
"Name":"Single Choice Field",
"ViewFieldID":1001385
}
]
}
The Object Manager service supports exporting document fields, including complete long text fields such as extracted text, via the Export API. The Export API uses a multistep workflow with several endpoints:
Use the initializeexport endpoint to set up the export of documents from a workspace based on a query. Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/<workspace artifact id>/object/initializeexport
The request must contain the following fields:
Note: You can use the MaxCharactersForLongTextValues field of the queryRequest object to override the number limit set by the MaximumLongTextSizeForExportInCell instance setting. For more information, see Set up the export job in .NET, and Instance setting descriptions on the Relativity RelativityOne Documentation site.
1
2
3
4
5
6
7
8
9
10
11
12
{
"queryRequest": {
"ObjectType": {"ArtifactTypeID":10},
"fields":[
{
"ArtifactID":1003668
}
],
"condition":"'Extracted Text' ISSET "
},
"start":0
}
The response contains the following fields:
1
2
3
4
{
"RunID": "60b6d8c2-9475-4fda-80bb-339f4dcad504",
"RecordCount": 100000
}
Call one of the following endpoints to retrieve document fields from the export job:
Review the following considerations for these endpoints:
Use the retrievenextresultsblockfromexport endpoint to get the next block of records from an in-progress export job. Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/retrievenextresultsblockfromexport
The body of the request must include the following fields:
1
2
3
4
{
"runID": "1f485684-e28c-4204-a795-f11dc91c0f3a",
"batchSize":5
}
The response contains a collection of objects with 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
23
24
25
26
[
{
"ArtifactID": 1048512,
"Values": [
"Test CHINA CLEANS UP FISCAL & TAXATION PREFERENTIAL POLICIES from AsiaInfo Services\r\n\r\nBEIJING, Jun 26, 2002 (AsiaPort via COMTEX) -- Chinese government continues theefforts to clean up completely all kinds of fiscal and taxationpreferential policies and fiscal subsidy policies, abolish fiscaland taxation preferential policies for a few enterprises and areas,and abolish fiscal subsidy styles that do not accord with Chinesegovernment' s commitment and the WTO regulations.\r\n\r\nOn the basis of seriously cleaning up fiscal and taxation laws, rules and systems, Chinese government will continue to revise the contents that do not in accordance with Chinese\r\n"
]
},
{
"ArtifactID": 1048513,
"Values": [
"Sally International affairs\r\nOvertaxed.\r\n\r\nWorkout Chinese rural taxation in the context of government regulation.\r\nSharing and Collaboration Policies within Government Agencies.\r\nCorporate Sector: Surtax\r\n\r\n"
]
},
{
"ArtifactID": 1048519,
"Values": [
"Are Government Policies More Important Than Taxation in Attracting FDI?\r\n\r\nThis paper attempts to broaden the existing empirical literature on foreign direct investment by incorporating government expenditure policies, such as investment in infrastructure, and institutional factors that may impact business investment, such as corruption, along with other conventional determinants such as taxes, location factors, and agglomeration effects. We do so in an unbalanced panel data setting, where we use fixed effects to control for country specific idiosyncrasies and also year dummies in some specifications. Our data include both developing and developed countries in different regions of the world. The regression results indicate that better infrastructure and lower taxes attract FDI, with weaker evidence suggesting lower corruption also increases FDI. These results are robust and hold after controlling for fixed country effects, common year effects of FDI, and agglomeration effects. The magnitude of the response of FDI to infrastructure changes is similar to that of taxes in elasticity terms. The results add evidence to previous cross-sectional results and emphasize the importance of a range of government policies in addition to taxation in attracting foreign direct investment."
]
},
{
"ArtifactID": 1048520,
"Values": [
"Foreign Affairs:\r\n\r\nInternational relations (IR) represents the study of foreign affairs and global issues among states within the international system, including the roles of states, inter-governmental organizations (IGOs), non-governmental organizations (NGOs), and multinational corporations (MNCs). It is both an academic and public policy field, and can be either positive or normative as it both seeks to analyze as well as formulate the foreign policy of particular states. It is often considered a branch of political science.\r\n\r\nApart from political science, IR draws upon such diverse fields as economics, history, law, philosophy, geography, sociology, anthropology, psychology, and cultural studies. It involves a diverse range of issues including but not limited to: globalization, state sovereignty, ecological sustainability, nuclear proliferation, nationalism, economic development, terrorism, organized crime, human security, foreign interventionism and human rights.\r\n"
]
}
]
The following JSON response contains the #KCURA99DF2F0FEB88420388879F1282A55760# token instead of the text.
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
[
{
"ArtifactID": 1048512,
"Values": [
"#KCURA99DF2F0FEB88420388879F1282A55760#"
]
},
{
"ArtifactID": 1048513,
"Values": [
"#KCURA99DF2F0FEB88420388879F1282A55760#"
]
},
{
"ArtifactID": 1048515,
"Values": [
"#KCURA99DF2F0FEB88420388879F1282A55760#"
]
},
{
"ArtifactID": 1048517,
"Values": [
"#KCURA99DF2F0FEB88420388879F1282A55760#"
]
},
{
"ArtifactID": 1048518,
"Values": [
"#KCURA99DF2F0FEB88420388879F1282A55760#"
]
}
]
Use the RetrieveResultsBlockFromExport endpoint to get a specific block of records from an in-progress export job. Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/RetrieveResultsBlockFromExport
The request must contain the following fields:
Note: The actual number of results returned may be less than the maximum number requested.
1
2
3
4
5
{
"runID":"310a6c13-3619-45fd-8723-bfaad86dfa45",
"resultsBlockSize":4,
"exportIndexID":0
}
The response contains a collection of objects with 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
23
24
25
26
[
{
"ArtifactID": 1048512,
"Values": [
"Test CHINA CLEANS UP FISCAL & TAXATION PREFERENTIAL POLICIES from AsiaInfo Services\r\n\r\nBEIJING, Jun 26, 2002 (AsiaPort via COMTEX) -- Chinese government continues theefforts to clean up completely all kinds of fiscal and taxationpreferential policies and fiscal subsidy policies, abolish fiscaland taxation preferential policies for a few enterprises and areas,and abolish fiscal subsidy styles that do not accord with Chinesegovernment' s commitment and the WTO regulations.\r\n\r\nOn the basis of seriously cleaning up fiscal and taxation laws, rules and systems, Chinese government will continue to revise the contents that do not in accordance with Chinese\r\n"
]
},
{
"ArtifactID": 1048513,
"Values": [
"Sally International affairs\r\nOvertaxed.\r\n\r\nWorkout Chinese rural taxation in the context of government regulation.\r\nSharing and Collaboration Policies within Government Agencies.\r\nCorporate Sector: Surtax\r\n\r\n"
]
},
{
"ArtifactID": 1048519,
"Values": [
"Are Government Policies More Important Than Taxation in Attracting FDI?\r\n\r\nThis paper attempts to broaden the existing empirical literature on foreign direct investment by incorporating government expenditure policies, such as investment in infrastructure, and institutional factors that may impact business investment, such as corruption, along with other conventional determinants such as taxes, location factors, and agglomeration effects. We do so in an unbalanced panel data setting, where we use fixed effects to control for country specific idiosyncrasies and also year dummies in some specifications. Our data include both developing and developed countries in different regions of the world. The regression results indicate that better infrastructure and lower taxes attract FDI, with weaker evidence suggesting lower corruption also increases FDI. These results are robust and hold after controlling for fixed country effects, common year effects of FDI, and agglomeration effects. The magnitude of the response of FDI to infrastructure changes is similar to that of taxes in elasticity terms. The results add evidence to previous cross-sectional results and emphasize the importance of a range of government policies in addition to taxation in attracting foreign direct investment."
]
},
{
"ArtifactID": 1048520,
"Values": [
"Foreign Affairs:\r\n\r\nInternational relations (IR) represents the study of foreign affairs and global issues among states within the international system, including the roles of states, inter-governmental organizations (IGOs), non-governmental organizations (NGOs), and multinational corporations (MNCs). It is both an academic and public policy field, and can be either positive or normative as it both seeks to analyze as well as formulate the foreign policy of particular states. It is often considered a branch of political science.\r\n\r\nApart from political science, IR draws upon such diverse fields as economics, history, law, philosophy, geography, sociology, anthropology, psychology, and cultural studies. It involves a diverse range of issues including but not limited to: globalization, state sovereignty, ecological sustainability, nuclear proliferation, nationalism, economic development, terrorism, organized crime, human security, foreign interventionism and human rights.\r\n"
]
}
]
Use streamlongtext endpoint to retrieve a stream of text for long text fields marked as exceeding exceeds the size limit for the data returned by the RetrieveNextResultsBlockFromExport or RetrieveResultsBlockFromExport endpoint. Send a POST request with a URL in the following format:
1
<host>/Relativity.Rest/api/Relativity.ObjectManager/{versionNumber}/workspace/{workspaceID}/object/streamlongtext
The body of the request must include the following fields:
1
2
3
4
5
6
7
8
{
"exportObject": {
"ArtifactID": 1048519
},
"longTextField": {
"ArtifactID": 1003668
}
}
The response is a text stream of the content from a specific field. For unicode-enabled fields, the stream is encoded as UTF-16.
Apart from standard REST status codes, the Object Manager service may return unique status codes, described below.
Code | Description |
---|---|
554 | The 554 error code are returned when operations fail due to an issue with event handlers. For example, perhaps there is a custom pre-save event handler that requires certain fields to be set. |
429 - Too many Requests | The 429 error code is a rate limit error due to too many requests. See Rate limit |
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 |