# Lean - enrollDisposable_v2 method

DO NOT USE THIS METHOD
This method is not an evolution of enrollDisposable.

It is a reserved flow that requires this sequence:

* RAWS#addTitolare to add the data of the holder
* RAWS#addRequest to add a request for a new certificare. It returns the cut identification
* RAWS#setRequestEvidence
* LEAN#enrollDisposable_v2


REST API
No REST API available for this method.

SOAP API
The SOAP interface is deprecated. Use the REST API instead.

**method:** enrollDisposable_v2

| **Parameter** | **Description** | **Mandatory** |
|  --- | --- | --- |
| token | The cut identification obtained by the addRequest method | YES |
| cert | [`DisposableCertificate` object](/products/leandisposable/enterprise-documentation/developer-documentation/api-references/data-objects#disposablecertificate)  The type value is overridden by the value DISPOSABLE_YES | NO |
| lraid | The LRA identification code | NO |


**Request**


```xml
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.ws.nam/">
  <soap:Body>
    <ser:enrollDisposable_v2>
      <token>RESF20241...9857715</token>
      <cert>
        <fullData>false</fullData>
        <otpType>SMS</otpType>
        <password>****</password>
        <securityCode>****</securityCode>
        <type>DISPOSABLE</type>
      </cert>
      <lraid>111</lraid>
    </ser:enrollDisposable_v2>
  </soap:Body>
</soap:Envelope>
```

**Response Example**


```xml
soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:enrollDisposable_v2 xmlns:ns2="http://service.ws.nam/">
         <return>
            <cert>LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUlNRENDQnhp........VRFLS0tLS0=</cert>
            <certIdOtp>226761</certIdOtp> 
            <certSerialNumber>17639DE3E4492628</certSerialNumber>
            <certType>DISPOSABLE</certType>
            <certUsageLimit>L utilizzo del certificato e limitato ai rapporti con NAMIRIAL S.P.A. CA/The certificate may be used only for relations with the NAMIRIAL S.P.A. CA</certUsageLimit>
            <deviceCode>RHIDP2211114824516</deviceCode>
         </return>
      </ns2:enrollDisposable_v2>
   </soap:Body>
</soap:Envelope>
```