Reserve a specific slot index for a user ID, or unreserve it by setting user_id to null. Special value -1 is also valid for user_id.
curl --request POST \
--url https://api.fluxer.app/v1/admin/visionary-slots/reserve \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"slot_index": 1073741824,
"user_id": "<string>"
}
'{
"success": true
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Success
true curl --request POST \
--url https://api.fluxer.app/v1/admin/visionary-slots/reserve \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"slot_index": 1073741824,
"user_id": "<string>"
}
'{
"success": true
}