cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
5650
Views
4
Helpful
4
Replies

API for controlling AP to reboot remotely

NamgyuKim
Level 2
Level 2
Dear everyone,
Aren't there any Meraki APIs to control APs in a network in order to reboot them remotely?
I have checked some Meraki API dashboards but I did not find ones about MR.
1 Accepted Solution

Accepted Solutions

Hi @NamgyuKim ,

If you look under the api list and under devices, there is the following which should allow you to reboot AP's

Reboot a device

HTTP Request

POST/networks/{networkId}/devices/{serial}/reboot

Parameters

None

Sample Request

curl -L -H 'X-Cisco-Meraki-API-Key: <key>' -H 'Content-Type: application/json' -X POST 'https://api.meraki.com/api/v0/networks/{networkId}/devices/{serial}/reboot'

Sample Response

Successful HTTP Status: 200

{
  "success": true
}

View solution in original post

4 Replies 4

NamgyuKim
Level 2
Level 2

I did not find concerned API yet but detect how to reboot AP remotely with Meraki dashboard!

Is there anybody who knows the answer about the original question?

Hi @NamgyuKim ,

If you look under the api list and under devices, there is the following which should allow you to reboot AP's

Reboot a device

HTTP Request

POST/networks/{networkId}/devices/{serial}/reboot

Parameters

None

Sample Request

curl -L -H 'X-Cisco-Meraki-API-Key: <key>' -H 'Content-Type: application/json' -X POST 'https://api.meraki.com/api/v0/networks/{networkId}/devices/{serial}/reboot'

Sample Response

Successful HTTP Status: 200

{
  "success": true
}

And in dashboard you can find it in the Tools tab on the status pages of the different product group status pages:

image.png

Thank you @markdavis_subs and @BrechtSchamp all!

Special thanks to @markdavis_subs, I also find it at 'device' category.