Hi,
Trying to get the qtree name that has curly braces in it. ex - {cjtest-really-long-name}
if tried name: {cjtest-really-long-name} without double quotes around the name, it did not return the qtree record.
curl -X GET "https://host_ip/api/storage/qtrees?name=%7Bcjtest-really-long-name%7D&return_records=true&return_timeout=15" -H "accept: application/json" -H "authorization: Basic YWRtaW46bmV0YXBwMSE="
whereas with double quotes "{cjtest-really-long-name}", it return record good.
curl -X GET "https://host_ip/api/storage/qtrees?name=%22%7Bcjtest-really-long-name%7D%22&return_records=true&return_timeout=15" -H "accept: application/json" -H "authorization: Basic YWRtaW46bmV0YXBwMSE="
is this expected?
Thanks,
Mohan