NAME=taterman EMAIL=sweettaterhater@taterman.com curl --jp "user=$NAME" --jp "email=$EMAIL" http://getdemtaters.com
curl -d "{\"user:\"$NAME\",\"email\":\"$EMAIL\"}" http://getdemtaters.com
jq -n --arg name "$NAME" --arg email "$EMAIL" '{ "user": $name, "email": $email }' | curl -d @-