curl --request PUT \
--url https://api.example.com/api/number-ranges/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"start": 123,
"end": 123,
"latest_value": 123,
"increase_by": 123,
"prefix": "<string>",
"suffix": "<string>",
"padding": 123
}
'