The following command deletes the 2.2.2.2 IP address map from the addedfqdn.com FQDN.

Situation before delete:

<?xml version="1.0" encoding="ISO-8859-1"?>
<Response stat="200" code="ok">
<Success><Data><fqdn><Status>Up</Status>
<FullyQualifiedDomainName>addedfqdn.com.</FullyQualifiedDomainName>
<SelectionCriteria>rr</SelectionCriteria>
<FailTime>0</FailTime>
<SiteRecoveryMode>auto</SiteRecoveryMode>
<Mapping>1</Mapping>
<failover>N</failover>
<Map><Status>Up</Status>
<Index>1</Index>
<IPAddress>2.2.2.2</IPAddress>
<Checker>icmp</Checker>
<CheckerPort>0</CheckerPort>
<Weight>1000</Weight>
<Enable>Y</Enable>
<LocationLatitude>0.00000000</LocationLatitude>
<LocationLongitude>0.00000000</LocationLongitude>
</Map></fqdn></Data>
</Success>
</Response>
curl -k "https://bal:1fourall@20.200.25.100/access/delmap?fqdn=addedfqdn.com&ip=2.2.2.2"

Situation after delete:

<?xml version="1.0" encoding="ISO-8859-1"?>
<Response stat="200" code="ok">
<Success><Data><fqdn><Status>Down</Status>
<FullyQualifiedDomainName>addedfqdn.com.</FullyQualifiedDomainName>
<SelectionCriteria>rr</SelectionCriteria>
<FailTime>0</FailTime>
<SiteRecoveryMode>auto</SiteRecoveryMode>
<Mapping>0</Mapping>
<failover>N</failover>
</fqdn></Data>
</Success>
</Response>