RelativityOne · Example Payload

Relativityone Add Custodian Example

Example request and response for adding a custodian to a legal hold project in RelativityOne.

eDiscoveryLegalLegal HoldDocument ManagementComplianceLitigation

Relativityone Add Custodian Example is an example object payload from RelativityOne, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Add Custodian to Legal Hold Project",
  "description": "Example request and response for adding a custodian to a legal hold project in RelativityOne.",
  "request": {
    "method": "POST",
    "url": "https://relativity.rest/api/relativity-environment/v1/workspaces/12345/legal-hold/projects/98765/custodians",
    "headers": {
      "Authorization": "Bearer {token}",
      "Content-Type": "application/json"
    },
    "body": {
      "emailAddress": "john.doe@example.com",
      "employeeId": "EMP-12345"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "artifactId": 11111,
      "firstName": "John",
      "lastName": "Doe",
      "emailAddress": "john.doe@example.com",
      "employeeId": "EMP-12345",
      "status": "Active"
    }
  }
}