Get field values for document
get/documents/{objectTypeName}/{documentId}/fields
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.
1{2 "count": 2,3 "items": [4 {5 "fieldName": "ssn",6 "raw": 123456787 },8 {9 "fieldName": "last_name",10 "raw": "Smith"11 }12 ]13}
Name | Type | Required | Description |
---|---|---|---|
documentId | string | true | The ID of the document. |
objectTypeName | string | true | The object type of the document. |