Adds a new recipe
label - recipe label
description - recipe description
compatible_with - recipe compatibility: windows or unix
script_type - script type for Windows-compatible recipes:
This parameter is for Windows recipes only.
201 Status and created recipe is returned on success
curl -i -X POST -u user:userpass <api_url>/recipes.json -d '{"recipe":{"label":"New Label", "description":"New Description","compatible_with":"windows","script_type":"bat"}}' -H 'Accept: application/json' -H 'Content-type: application/json'
curl -i -X POST -u user:userpass <api_url>/recipes.xml -d '<recipe><label>New Label</label><description>New description</description><compatible_with>windows</compatible_with><script_type>bat</script_type></recipe>' -H 'Accept: application/xml' -H 'Content-type: application/xml'