Add Member to a Policy

Following are the steps to add two members to an existing policy:

POST http://[hostName]:[portNumber]/[api-context-root]/policies

<policy code='[policycode]' brandCode='[brandcode]' insuranceTypeCode='MULTI_LINE_INSURANCE'>
	<policyholderList>
		<policyholder startDate='2019-01-01'  SVNTV_CHAR='Initial'>
			<person code='[personcode1]' name='[name1]' dateOfBirth='1970-01-01' gender='M' nameFormatCode='NAFMDFLT' outputLanguageCode='en' dobInterpretation='E' />
		</policyholder>
		<policyholder startDate='2023-01-01'  endDate = '2023-01-31' SVNTV_CHAR='Initial'>
			<person code='[personcode2]' name='[name2]' dateOfBirth='1970-01-01' gender='M' nameFormatCode='NAFMDFLT' outputLanguageCode='en' dobInterpretation='E' />
		</policyholder>
	</policyholderList>
</policy>