Requests and obtains the details of particular entity that is identified by the entity ID or by the external ID of one of its composite identity records. The UMF API equivalent of the getEntityDetail method are the SOA_ENTITY_DETAIL_REQUEST input document and the SOA_ENTITY_DETAIL_RESPONSE output document.
getEntityDetail ( entityIdentifier, depth additionalinfo );
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <getEntityDetail xmlns="http://services/"> <entityIdentifier xsi:type="ns1:EntityID" xmlns:ns1="http://common/" xmlns=""> <entityID>60</entityID> </entityIdentifier> <depth xsi:type="ns2:DepthSetting" xmlns:ns2="http://common/" xmlns=""> <value>FULL</value> </depth> <additionalInfo xsi:nil="true" xmlns=""/> </getEntityDetail> </soapenv:Body> </soapenv:Envelope>
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <getEntityDetail xmlns="http://services/"> <entityIdentifier xsi:type="ns1:ExternalID" xmlns:ns1="http://common/" xmlns=""> <externalID>190-040028</externalID> <dataSourceCode>100</dataSourceCode> </entityIdentifier> <depth xsi:type="ns2:DepthSetting" xmlns:ns2="http://common/" xmlns=""> <value>FULL</value> </depth> <additionalInfo xsi:nil="true" xmlns=""/> </getEntityDetail> </soapenv:Body> </soapenv:Envelope>
<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soapenv:Body> <getEntityDetailResponse xmlns="http://services/"> <entities xmlns=""> <entityID>60</entityID> <roleIDs>1</roleIDs> <largeEntity>FALSE</largeEntity> <entityType>PERSON</entityType> <bestName> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <nameID>76</nameID> <nameTypeCode>M</nameTypeCode> <givenName>David</givenName> <surname>Henderson</surname> </bestName> <bestAddress> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <addressID>72</addressID> <addressTypeCode>H</addressTypeCode> <street1>3665 Walnut Street</street1> <city>San Francisco</city> <state>CA</state> <country>USA</country> <postalCode>94014</postalCode> </bestAddress> <bestEmail> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <emailID>22</emailID> <emailAddress>DAVID1@AOL.COM</emailAddress> <userEmailType>H</userEmailType> <userDefinedStatus>0</userDefinedStatus> </bestEmail> <identities> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <roleIDs>1</roleIDs> <attributes xmlns:ns2="http://entity/results/" xsi:type="ns2:NameDetail"> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <nameID>76</nameID> <nameTypeCode>M</nameTypeCode> <givenName>David</givenName> <surname>Henderson</surname> </attributes> <attributes xmlns:ns2="http://entity/results/" xsi:type="ns2:AddressDetail"> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <addressID>72</addressID> <addressTypeCode>H</addressTypeCode> <street1>3665 Walnut Street</street1> <city>San Francisco</city> <state>CA</state> <country>USA</country> <postalCode>94014</postalCode> </attributes> <attributes xmlns:ns2="http://entity/results/" xsi:type="ns2:CharacteristicDetail"> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <characteristicID>60</characteristicID> <characteristicValue>M</characteristicValue> <characteristicTypeID>2</characteristicTypeID> </attributes> <attributes xmlns:ns2="http://entity/results/" xsi:type="ns2:EmailDetail"> <identityHandle> <internalID>71</internalID> <externalID>PNR602-10QR</externalID> <dataSourceCode>100</dataSourceCode> <externalReference>PNR602-10QR</externalReference> </identityHandle> <lastModifiedTimestamp>2008-07-28T15:11:55</lastModifiedTimestamp> <emailID>22</emailID> <emailAddress>DAVID1@AOL.COM</emailAddress> <userEmailType>H</userEmailType> <userDefinedStatus>0</userDefinedStatus> </attributes> </identities> </entities> </getEntityDetailResponse> </soapenv:Body> </soapenv:Envelope>