delSubscriber

Request from BOSS to Mediation Server

<soapenv:Envelope 
          xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
          xmlns:pcrf="http://www.examplenetwork.com/PCRF/" 
          xmlns:pcrf1="pcrf:soap">
   <soapenv:Header>
      <pcrf:Header>
         <Address></Address>
         <Username>admin</Username>
         <Password>*****</Password>
         <time></time>
         <serial></serial>
      </pcrf:Header>
   </soapenv:Header>
   <soapenv:Body>
      <pcrf1:delSubscriber>
         <inPara>
            <subscriber>
               <attribute>
                  <key>usrIdentifier</key>
                  <value>008613705161111</value>
               </attribute>
               <attribute>
                  <key>operateTime</key>
                  <value>20140620182010</value>
               </attribute>
            </subscriber>
         </inPara>
      </pcrf1:delSubscriber>
   </soapenv:Body>
</soapenv:Envelope>

Response from Mediation Server to BOSS

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns1:delSubscriberResponse xmlns:ns1="pcrf:soap">
         <result xmlns:ns2="http://www.examplenetwork.com/PCRF/">
            <resultCode>0</resultCode>
         </result>
      </ns1:delSubscriberResponse>
   </soap:Body>
</soap:Envelope>

Request between Mediation Server and SPR

<?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"
    xmlns:ns1="http://www.example.com/udr/">
  <soapenv:Body>
    <ns1:processTransaction>
      <![CDATA[<req name="delete" resonly="y">
        <ent name="Subscriber" ns="policy"/>
        <where>
          <expr>
            <attr name="MSISDN"/>
            <op value="="/>
            <value val="008613705161111"/>
          </expr>
        </where>
      </req>]]>
    </ns1:processTransaction>
  </soapenv:Body>
</soapenv:Envelope>

Response from SPR to Mediation Server

    <ns1:message error="0">
      <![CDATA[<?xml version="1.0" encoding="UTF-8"?>
      <req name="delete" resonly="y">
        <res affected="1" error="0"/>
      </req>]]>
    </ns1:message>