diff --git a/config/config.xml.default b/config/config.xml.default
index 48a35512d0c7e737e98eb8e03bf7135f895cbf09..fd339a629b8083342fcd8676a36ac6dc1070f202 100755
--- a/config/config.xml.default
+++ b/config/config.xml.default
@@ -67,6 +67,11 @@
         <!-- <mode>
             <id>eidas</id>
             <color>#00FF00</color>
+        </mode>
+        <mode>
+            <id>external</id>
+            <color>#FF0000</color>
+            <issuer></issuer>
         </mode> -->
     </signatureModes>
 </ROOT>
diff --git a/lang/fr.json b/lang/fr.json
index 6b0b2c90b7f65fb6ba3ab7b972cd825f3a6c77f1..7dc71306ccb6fe7f74e85a42e6136a96a0c0d3c2 100755
--- a/lang/fr.json
+++ b/lang/fr.json
@@ -519,6 +519,10 @@
 		"noConnector": "Le connecteur associé n'existe pas",
 		"otpVisaUser": "L'utilisateur sera notifié par <b>courriel</b> au moment de son tour dans le circuit.",
 		"messageSaved": "Message enregistré",
-		"manage_customizationAdmin": "Personnaliser la page de connexion"
+		"manage_customizationAdmin": "Personnaliser la page de connexion",
+		"internalUserOtpMsg": "<b>{{user}}</b> sera converti en utilisateur externe, vous ne pourrez plus choisir les autres modes de signature.",
+		"externalUser": "Role externe",
+		"visa_yousignUser": "Viseur (Yousign)",
+		"sign_yousignUser": "Signataire (Yousign)"
 	}
 }
diff --git a/src/frontend/app/document/visa-workflow/otps/otp-create.component.html b/src/frontend/app/document/visa-workflow/otps/otp-create.component.html
index 48a60437469b29506fd9045191e4fb56af2282f2..be5b1d2802296d628fbdb5ac856eba81b3a5b282 100644
--- a/src/frontend/app/document/visa-workflow/otps/otp-create.component.html
+++ b/src/frontend/app/document/visa-workflow/otps/otp-create.component.html
@@ -9,6 +9,11 @@
     </ion-toolbar>
 </ion-header>
 <ion-content *ngIf="!loading">
+    <ion-card *ngIf="data?.type === undefined">
+        <ion-item color="primary">
+            <ion-label class="info" [innerHTML]="'lang.internalUserOtpMsg' | translate : { user : data.firstname + ' ' + data.lastname}"></ion-label>
+        </ion-item>
+    </ion-card>
     <ion-card *ngIf="sources.length > 1">
         <ion-item>
             <ion-label color="secondary">{{'lang.source' | translate}}</ion-label>
diff --git a/src/frontend/app/document/visa-workflow/otps/otp-create.component.ts b/src/frontend/app/document/visa-workflow/otps/otp-create.component.ts
index f8befd91cfc5381ddf0860b749e28dc03acd7467..19765856180f7776e32fbf3b50c291f12c083d2d 100644
--- a/src/frontend/app/document/visa-workflow/otps/otp-create.component.ts
+++ b/src/frontend/app/document/visa-workflow/otps/otp-create.component.ts
@@ -46,8 +46,16 @@ export class OtpCreateComponent implements OnInit {
             this.http.get('../rest/connectors').pipe(
                 tap((data: any) => {
                     this.sources = data.otp;
-                    this.currentSource = this.data ? this.data : this.sources[0];
-                    this.connectorId = this.data ? this.currentSource.sourceId : this.currentSource.id;
+                    if (this.data?.type === undefined) {
+                        this.currentSource = this.sources[0];
+                        this.connectorId = this.currentSource.id;
+                    } else {
+                        this.currentSource = {
+                            sourceId : this.data.sourceId,
+                            type: this.data.type
+                        };
+                        this.connectorId = this.currentSource.sourceId;
+                    }
                     this.loading = false;
                     resolve(true);
                 }),
diff --git a/src/frontend/app/document/visa-workflow/otps/yousign/otp-yousign.component.ts b/src/frontend/app/document/visa-workflow/otps/yousign/otp-yousign.component.ts
index 58481f79d94855c6209f5120f3498095085de094..8d3b35f7c45d362c2e36f76811a1f4dd0ee013e2 100644
--- a/src/frontend/app/document/visa-workflow/otps/yousign/otp-yousign.component.ts
+++ b/src/frontend/app/document/visa-workflow/otps/yousign/otp-yousign.component.ts
@@ -20,7 +20,7 @@ export class OtpYousignComponent implements OnInit {
 
     securityModes: any[] = [];
 
-    roles: any[] = ['visa', 'sign'];
+    roles: any[] = ['visa_yousign', 'sign_yousign'];
 
     otp: any = {
         type: 'yousign',
@@ -29,7 +29,7 @@ export class OtpYousignComponent implements OnInit {
         email: '',
         phone: '',
         security: 'sms',
-        role: 'visa',
+        role: 'sign_yousign',
         sourceId: '',
         modes: this.roles
     };
@@ -55,12 +55,15 @@ export class OtpYousignComponent implements OnInit {
 
     getConfig() {
         return new Promise((resolve) => {
-            this.http.get('../rest/connectors/' + this.otp.sourceId).pipe(
+            this.http.get('../rest/connectors/' + this.connectorId).pipe(
                 tap((data: any) => {
                     this.securityModes = [... new Set(data.otp.securityModes)];
                     this.otp.security = this.securityModes[0];
                     if (this.otpYousign) {
-                        this.otp = this.otpYousign;
+                        this.otp = {...this.otp, ...this.otpYousign};
+                        this.otp.modes = this.roles;
+                        this.otp.sourceId = this.connectorId;
+                        this.formatPhone();
                     }
                     resolve(true);
                 }),
diff --git a/src/frontend/app/document/visa-workflow/visa-workflow.component.html b/src/frontend/app/document/visa-workflow/visa-workflow.component.html
index 52d241b8882430472dd305d384799808e4fb34f9..bf25501bfef3e71e72147506e316e2e65ca06a89 100644
--- a/src/frontend/app/document/visa-workflow/visa-workflow.component.html
+++ b/src/frontend/app/document/visa-workflow/visa-workflow.component.html
@@ -80,7 +80,7 @@
                 <h2 [title]="diffusion.userDisplay" class="danger" *ngIf="diffusion.userDisplay === ''">
                     {{'lang.userDeleted' | translate}}</h2>
                 <p *ngIf="diffusion.noConnector === undefined && diffusion.processDate === null" style="display: flex;justify-content: start;">
-                    <ion-select [(ngModel)]="diffusion.role" [title]="diffusion.userDisplay"
+                    <ion-select [(ngModel)]="diffusion.role" (ionChange)="checkRole(diffusion, i, $event.detail.value)" [title]="diffusion.userDisplay"
                         interface="popover" [interfaceOptions]="customPopoverOptions"
                         [style.color]="getRole(diffusion.role)?.color" [disabled]="!editMode"
                         style="width: auto;max-width: 100%;padding-left:0px;">
@@ -110,7 +110,7 @@
             </ion-icon>
             <ion-buttons slot="end">
                 <ion-button style="z-index: 9999" *ngIf="editMode && diffusion.userId === null && hasConnector" fill="clear" slot="icon-only" shape="round"
-                    color="primary" (click)="$event.stopPropagation(); openOtpModal(diffusion)" [title]="'lang.updateOtp' | translate">
+                    color="primary" (click)="$event.stopPropagation();openOtpModal(diffusion, i)" [title]="'lang.updateOtp' | translate">
                     <ion-icon name="create-outline"></ion-icon>
                 </ion-button>
                 <ion-button style="z-index: 9999" *ngIf="editMode" fill="clear" slot="icon-only" shape="round"
diff --git a/src/frontend/app/document/visa-workflow/visa-workflow.component.ts b/src/frontend/app/document/visa-workflow/visa-workflow.component.ts
index ce40212515eaa744d10f663f88198210a054c57d..2d45365d5c79f80aab6c32205400682dfb278f77 100644
--- a/src/frontend/app/document/visa-workflow/visa-workflow.component.ts
+++ b/src/frontend/app/document/visa-workflow/visa-workflow.component.ts
@@ -159,13 +159,16 @@ export class VisaWorkflowComponent implements OnInit {
         this.visaUsersList = [];
     }
 
-    async openOtpModal(item: any = null) {
-        if (this.editMode && (item === null || (item && item.userId === null))) {
+    async openOtpModal(item: any = null, position: number = null, userId: number = null) {
+        if (this.editMode) {
             let objToSend: any;
-            if (item === null || (item && item.userId !== null)) {
+
+            if (userId !== null) {
+                objToSend = await this.getUserInfo(userId);
+            } else if (item === null) {
                 objToSend = null;
             } else {
-                if (item.userId === null && item.hasOwnProperty('status')) {
+                if (item.hasOwnProperty('status')) {
                     item = await this.formatData(item);
                 }
                 objToSend = {
@@ -192,7 +195,10 @@ export class VisaWorkflowComponent implements OnInit {
 
             modal.onDidDismiss()
                 .then(async (result: any) => {
-                    if (typeof result.data === 'object') {
+                    console.log(result);
+                    if (result.data === 'cancel' && userId !== null) {
+                        this.visaWorkflow[position].role = 'visa';
+                    } else if (typeof result.data === 'object') {
                         const obj: any = {
                             'userId': null,
                             'userDisplay': `${result.data.firstname} ${result.data.lastname}`,
@@ -203,8 +209,8 @@ export class VisaWorkflowComponent implements OnInit {
                             'modes': result.data.modes,
                             'otp': result.data
                         };
-                        if (objToSend !== null) {
-                            this.visaWorkflow[this.visaWorkflow.indexOf(item)] = obj;
+                        if (position !== null && item !== null) {
+                            this.visaWorkflow[position] = obj;
                             this.notificationService.success(this.translate.instant('lang.modificationSaved'));
                         } else {
                             this.visaWorkflow.push(obj);
@@ -214,6 +220,27 @@ export class VisaWorkflowComponent implements OnInit {
         }
     }
 
+    getUserInfo(userId: number) {
+        return new Promise((resolve) => {
+            this.http.get(`../rest/users/${userId}`).pipe(
+                tap((data: any) => {
+                    resolve({
+                        firstname: data.user.firstname,
+                        lastname: data.user.lastname,
+                        email: data.user.email,
+                        phone: data.user.phone,
+                        modes: []
+                    });
+                }),
+                catchError(err => {
+                    this.notificationService.handleErrors(err);
+                    resolve(false);
+                    return of(false);
+                })
+            ).subscribe();
+        });
+    }
+
     getCurrentWorkflow() {
         return this.visaWorkflow;
     }
@@ -273,7 +300,7 @@ export class VisaWorkflowComponent implements OnInit {
             this.http.get('../rest/connectors').pipe(
                 tap((data: any) => {
                     this.hasConnector = data.otp.length > 0 ? true : false;
-                    const connectorIds: any[] = data.otp.map((connector: any) => connector.id)
+                    const connectorIds: any[] = data.otp.map((connector: any) => connector.id);
                     resolve(connectorIds);
                 }),
                 catchError(err => {
@@ -331,13 +358,19 @@ export class VisaWorkflowComponent implements OnInit {
                 if (connectorIds.indexOf(objToSend.otp.sourceId) === -1) {
                     objToSend.otp.sourceId = connectorIds[0];
                     objToSend = {
-                        ... objToSend,
+                        ...objToSend,
                         noConnector: true
-                    }
+                    };
                 }
                 this.visaWorkflow[this.visaWorkflow.indexOf(item)] = objToSend;
                 resolve(objToSend);
             });
         }
     }
+
+    checkRole(item: any, position: number, mode: string) {
+        if (mode === 'external') {
+            this.openOtpModal(item, position, item.userId);
+        }
+    }
 }