sample scripts for doing REST API on vOLT tenants
diff --git a/xos/cord/rest_examples/add_volt_tenant.sh b/xos/cord/rest_examples/add_volt_tenant.sh
new file mode 100755
index 0000000..0b7ad74
--- /dev/null
+++ b/xos/cord/rest_examples/add_volt_tenant.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+HOST=198.0.0.44:8000
+AUTH=scott@onlab.us:letmein
+VLAN_ID=1234
+
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH -X POST -d "{\"service_specific_id\": \"$VLAN_ID\"}" $HOST/xoslib/volttenant/  
\ No newline at end of file
diff --git a/xos/cord/rest_examples/delete_volt_tenant.sh b/xos/cord/rest_examples/delete_volt_tenant.sh
new file mode 100755
index 0000000..17ea96f
--- /dev/null
+++ b/xos/cord/rest_examples/delete_volt_tenant.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+HOST=198.0.0.44:8000
+AUTH=scott@onlab.us:letmein
+ID=974
+
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH -X DELETE $HOST/xoslib/volttenant/$ID/  
\ No newline at end of file
diff --git a/xos/cord/rest_examples/list_cord_subscribers.sh b/xos/cord/rest_examples/list_cord_subscribers.sh
new file mode 100755
index 0000000..7fe6b5c
--- /dev/null
+++ b/xos/cord/rest_examples/list_cord_subscribers.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+HOST=198.0.0.44:8000
+AUTH=scott@onlab.us:letmein
+VLAN_ID=1234
+
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH $HOST/xoslib/cordsubscriber/  
\ No newline at end of file
diff --git a/xos/cord/rest_examples/list_volt_tenants.sh b/xos/cord/rest_examples/list_volt_tenants.sh
new file mode 100755
index 0000000..39bff62
--- /dev/null
+++ b/xos/cord/rest_examples/list_volt_tenants.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+HOST=198.0.0.44:8000
+AUTH=scott@onlab.us:letmein
+VLAN_ID=1234
+
+curl -H "Accept: application/json; indent=4" -H "Content-Type: application/json" -u $AUTH $HOST/xoslib/volttenant/  
\ No newline at end of file