-
Hello!
i am trying to start/stop the patrol via API. It was working some months ago, but now no more. Maybe you have changed something in the API? Currently I am using this (within a linux bash script):
# Get token
TOKEN=$(curl -H 'Content-Type: application/json' \
-X POST \
--data '[{"cmd":"Login","action":0,"param":{"User":{"userName":"Username","password":"Password"}}}]' \
"http://IP-address/cgi-bin/api.cgi?cmd=Login&token=null" \
| jq -r '.[0].value.Token.name')
# Start tour
curl -v -H 'Content-Type: application/json' \
-X POST \
--data '[{"cmd":"PtzCtrl","action":0,"param":{"channel":0,"op":"StartPatrol","id":0}}]' \
"http://IP-address/cgi-bin/api.cgi?cmd=PtzCtrl&token=$TOKEN"
Could you please give me some advise?
Many thanks for your kind assistance!Reply QuoteShare0- Share this Post
-
copy the link
Copied!
-
@das-dos_208145718501556 Try this without token and ensure https is enabled. None of my cameras have the patrol feature :(.
curl -s -k -X POST -H "Content-Type: application/json" -d "[{\"cmd\":\"PtzCtrl\",\"action\":0,\"param\":{\"channel\":0,\"op\":\"StartPatrol\",\"id\":0}}]" "https://192.168.1.X/cgi-bin/api.cgi?user=${username}&password=${passwd}" -
@joseph_1979
Thank you Joseph for your kind assistance. Unfortunately this is not working.
Maybe you or someone else has another idea?
Start/Stop patrol API issue on RLC-823A 16X
-
Hello!
i am trying to start/stop the patrol via API. It was working some months ago, but now no more. Maybe you have changed something in the API? Currently I am using this (within a linux bash script):
# Get token
TOKEN=$(curl -H 'Content-Type: application/json' \
-X POST \
--data '[{"cmd":"Login","action":0,"param":{"User":{"userName":"Username","password":"Password"}}}]' \
"http://IP-address/cgi-bin/api.cgi?cmd=Login&token=null" \
| jq -r '.[0].value.Token.name')
# Start tour
curl -v -H 'Content-Type: application/json' \
-X POST \
--data '[{"cmd":"PtzCtrl","action":0,"param":{"channel":0,"op":"StartPatrol","id":0}}]' \
"http://IP-address/cgi-bin/api.cgi?cmd=PtzCtrl&token=$TOKEN"
Could you please give me some advise?
Many thanks for your kind assistance!