MikroTik cAP ac

Can someone assist me in creating this setup?
I have already created a trunk port on the Cisco SW. Vlan 100 is for wlan1, Vlan 101 for wlan2 and Vlan 1999 is the mangement vlan that I would like to use to manage the AP.
Untitled Diagram.png
This is what I did and got the 2 wlan’s working. Each gets their respective vlan’s ip from the dhcp server. But I can’t get the management aspect working.

/interface bridge add name=bridge1

/interface bridge port add bridge=bridge1 interface=ether1
/interface bridge port add bridge=bridge1 interface=wlan1 pvid=100
/interface bridge port add bridge=bridge1 interface=wlan2 pvid=101

/interface bridge vlan add bridge=bridge1 tagged=ether1 untagged=wlan1 vlan-ids=100
/interface bridge vlan add bridge=bridge1 tagged=ether1 untagged=wlan2 vlan-ids=101

/interface bridge set bridge1 vlan-filtering=yes

Got it. two items, the first one you probably already have as some things are working but as per the second item you dont have a vlan line for the management vlan???

(1) So the Capac must be assigned an address on the management vlan.

/IP address
192.168.99.xx/24 network=192.168.99.0 interface=bridge1


(2) You are missing this line
/interface bridge vlan add bridge=bridge1 tagged**=bridge1**,eth1 vlan-id=1999

Basically you have to bring the management vlan to all connected smart devices and in this case ensure the bridge is tagged.
In fact it is the only tagging required (other than the ether1 trunk port incoming) because all the WLANS are untagged.

.