# Proxies API
The Meeting Proxies APIs is used to manage proxies submitted prior to a meeting.
# Proxy Endpoints
# List meeting proxies
(WIP)
# Find a meeting proxy
(WIP)
# Revoke meeting proxy
(WIP)
# Turn on/off proxy revocations
This endpoint is used to turn proxy revocations on or off. Once turned off, members may no longer revoke proxies. Any member that still have a proxy on file will not be able to vote in real-time on matters.
IMPORTANT: Live voting on matters cannot be enabled unless proxy revocation has first been turned off.
PUT /Meetings/{shortCode}/proxies/revocations
# Path Params
| Property | Type | Description |
|---|---|---|
| shortCode | string | The meeting's unique short code |
# Request
{
"status": "enabled"
}
| Property | Type | Description |
|---|---|---|
| status | string | Enable or disable revocation |
# Response
{
"status": "enabled"
}