You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rest-api/site-del.sh

17 lines
219 B

9 months ago
#!/bin/bash
if [[ -z $1 ]]
then
echo "USAGE: $0 {uniqueid}"
echo ""
exit
fi
id=$1
. config.ini
curl -s -X 'DEL' \
"$API_ENDPOINT_REDIRECTS/$id" \
-H 'accept: application/json' \
-H "x-api-key: $API_KEY"