Get field values for document

get/documents/{objectTypeName}/{documentId}/fields
Internal-Use Only

Gets a representation of multiple fields values for a top-level document. If any of the fields is configured for masking, and if the requesting user is authorized to reveal the value of the masked field, the raw unmasked value of the field is returned. If any of the fields are configured for masking and the requesting user is not authorized to reveal the value of the masked field, the value will be omitted from the response.

Request Samples

1

Response Samples

1{
2 "count": 2,
3 "items": [
4 {
5 "fieldName": "ssn",
6 "raw": 12345678
7 },
8 {
9 "fieldName": "last_name",
10 "raw": "Smith"
11 }
12 ]
13}

Path Parameters

NameTypeRequiredDescription
documentId
string
true

The ID of the document.

objectTypeName
string
true

The object type of the document.

Query Parameters

NameTypeRequiredDescription
fieldName
array [string]
true

The names of the fields.

Responses

StatusMeaningDescription
200OKThe request succeeded.Schema
404Not FoundThe document or field was not found.Schema