Reserves a snowflake ID range for future allocation. Creates audit log entry. Requires INSTANCE_SNOWFLAKE_RESERVATION_MANAGE permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/snowflake-reservations/add \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"snowflake": "<string>"
}
'{
"success": true
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Success
Whether the operation succeeded
true curl --request POST \
--url https://api.fluxer.app/v1/admin/snowflake-reservations/add \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"snowflake": "<string>"
}
'{
"success": true
}