diff --git a/SOL002/VNFIndicator-API/Subscriptions.robot b/SOL002/VNFIndicator-API/Subscriptions.robot
index b0aadf74d0d91076f8df6b0635b1b077e4b00109..65cfcde575b63c3a39687ede610cc1a573feb8e6 100644
--- a/SOL002/VNFIndicator-API/Subscriptions.robot
+++ b/SOL002/VNFIndicator-API/Subscriptions.robot
@@ -217,7 +217,8 @@ Send Post Request for VNF Indicator Subscription
     Log    Trying to create a new subscription
     Set Headers    {"Accept": "${ACCEPT_JSON}"}
     Set Headers    {"Content-Type": "${CONTENT_TYPE_JSON}"}
-    ${body}=    Get File    jsons/subscriptions.json
+    ${template}=    Get File    jsons/subscriptions.json
+    ${body}=        Format String   ${template}     callback_uri=${callback_uri}    callback_endpoint=${callback_endpoint}
     Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
     POST    ${apiRoot}/${apiName}/${apiVersion}/subscriptions    ${body}
     ${output}=    Output    response
diff --git a/SOL002/VNFIndicator-API/jsons/subscriptions.json b/SOL002/VNFIndicator-API/jsons/subscriptions.json
index ccf9f514c76e5227820801292eabe56b520dbb17..8274dac3fe638d186202a1254409cd031f9d0b04 100644
--- a/SOL002/VNFIndicator-API/jsons/subscriptions.json
+++ b/SOL002/VNFIndicator-API/jsons/subscriptions.json
@@ -1,3 +1,3 @@
-{
-	"callbackUri": "http://127.0.0.1/subscribe"
-}
\ No newline at end of file
+{{
+	"callbackUri": "{callback_uri}{callback_endpoint}"
+}}
\ No newline at end of file