[CORD-2641] Adding/removing IMSI from Progran

Change-Id: If32b45b4abb5b1e42e1e044b806f021dc3cd8137
diff --git a/xos/synchronizer/steps/progran_curl.yaml b/xos/synchronizer/steps/progran_curl.yaml
index f567a3b..cf76f6f 100644
--- a/xos/synchronizer/steps/progran_curl.yaml
+++ b/xos/synchronizer/steps/progran_curl.yaml
@@ -16,12 +16,12 @@
 - hosts: 127.0.0.1
   connection: local
   vars:
-    - profile: '{{ profile }}'
+    - body: '{{ body }}'
     - endpoint: '{{ endpoint }}'
 
   tasks:
     - debug:
-        msg: "{{ '{{' }} profile {{ '}}' }}"
+        msg: "{{ '{{' }} body {{ '}}' }}"
     # NOTE that the task has a generic name as it's planned to be used for all the requests
     - name: Call onos Progran
       uri:
@@ -32,6 +32,6 @@
         force_basic_auth: yes
         status_code: 200
         {% if method == "POST" or method == "PUT" -%}
-        body: "{{ '{{' }} profile {{ '}}' }}"
+        body: "{{ '{{' }} body {{ '}}' }}"
         body_format: json
         {%- endif -%}