diff --git a/cmd/init.go b/cmd/init.go
index 75ea00e6c75bee432de3164d6f721291028ef97b..d56f9f1f93cec2cd7e6bb4b858df6d5f0e43a0d4 100644
--- a/cmd/init.go
+++ b/cmd/init.go
@@ -9,6 +9,8 @@
 package cmd
 
 import (
+	"fmt"
+
 	"github.com/spf13/cobra"
 	jww "github.com/spf13/jwalterweatherman"
 	"github.com/spf13/viper"
@@ -24,6 +26,9 @@ var initCmd = &cobra.Command{
 
 		jww.INFO.Printf("User: %s", receptionIdentity.ID)
 		writeContact(receptionIdentity.GetContact())
+
+		// NOTE: DO NOT REMOVE THIS LINE. YOU WILL BREAK INTEGRATION
+		fmt.Printf("%s\n", receptionIdentity.ID)
 	},
 }