Reduce the total number of visionary slots. Only unreserved slots from the highest indices can be removed. Fails if reserved slots would be deleted.
curl --request POST \
--url https://api.fluxer.app/v1/admin/visionary-slots/shrink \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"target_count": 50000
}
'{}Documentation Index
Fetch the complete documentation index at: https://docs.fluxer.app/llms.txt
Use this file to discover all available pages before exploring further.
Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Target total number of slots (removes from highest indices, minimum 0 slots)
0 <= x <= 100000Success
true curl --request POST \
--url https://api.fluxer.app/v1/admin/visionary-slots/shrink \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"target_count": 50000
}
'{}