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
}
'{
"success": true
}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
}
'{
"success": true
}