Requests and obtains the details of all configured name types. The UMF API equivalent of the getNameTypes method are the SOA_ADDRESS_TYPES_REQUEST input document and the SOA_ADDRESS_TYPES_RESPONSE output document.
getAddressTypes ( 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> <getAddressTypes xmlns="http://services/"> <additionalInfo xsi:nil="true" xmlns=""/> </getAddressTypes> </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> <getAddressTypesResponse xmlns="http://services/"> <addressTypes xmlns=""> <typeCode>B</typeCode> <description>Business</description> <status>ACTIVE</status> </addressTypes> <addressTypes xmlns=""> <typeCode>H</typeCode> <description>Home</description> <status>ACTIVE</status> </addressTypes> <addressTypes xmlns=""> <typeCode>O</typeCode> <description>Other</description> <status>ACTIVE</status> </addressTypes> </getAddressTypesResponse> </soapenv:Body> </soapenv:Envelope>