01-12-2021 02:52 AM
Hi guys,
Is there an API call to move an AP from one group to another? I've looked at the documentation and I can't see it obviously...
Ruckus vSZ-H version 5.1.2.0.302
Thanks,
Chris
Solved! Go to Solution.
01-12-2021 06:40 AM
Hi Chris,
Have you tried below two API calls?
Action: REMOVE MEMBER
Type: DELETE
Use: Use this API command to remove a member AP from an AP group.
API call: /v8_2/rkszones/{zoneId}/apgroups/{id}/members/{apMac}
Action: ADD MEMBER
Type: POST
Use: Use this API command to create new AP group within a zone.
API call: /v8_2/rkszones/{zoneId}/apgroups/{id}/members/{apMac}
01-12-2021 03:39 AM
I think I found it, just being a bit blind!
01-12-2021 06:40 AM
Hi Chris,
Have you tried below two API calls?
Action: REMOVE MEMBER
Type: DELETE
Use: Use this API command to remove a member AP from an AP group.
API call: /v8_2/rkszones/{zoneId}/apgroups/{id}/members/{apMac}
Action: ADD MEMBER
Type: POST
Use: Use this API command to create new AP group within a zone.
API call: /v8_2/rkszones/{zoneId}/apgroups/{id}/members/{apMac}
01-12-2021 06:53 AM
Thanks for following up Syamantak, the add member action was what I was after and is working as expected.
01-12-2021 06:57 AM
I didn't realized that you already got the correct API call.
Good to know that you were able to find it.