Get field values for child document
get/documents/{objectTypeName}/{documentId}/children/{childDocType}/{childDocId}/fields
Gets a representation of multiple fields values for a child 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 is 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 |
---|---|---|---|
childDocId | string | true | The ID of the child document. |
childDocType | string | true | The object type of the child document. |
documentId | string | true | The ID of the document. |
objectTypeName | string | true | The object type of the document. |