# Universe API ## Getting Universe Info ``` Usage: rbxcloud universe get [OPTIONS] --universe-id --api-key Options: -u, --universe-id Universe ID -p, --pretty Pretty-print the JSON response -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -h, --help Print help ``` ### Example ``` $ rbxcloud universe get -p -u 12345 -a MY_KEY ``` ## Updating Name ``` Usage: rbxcloud universe update-name [OPTIONS] --universe-id --name --api-key Options: -u, --universe-id Universe ID -n, --name New Universe name -p, --pretty Pretty-print the JSON response -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -h, --help Print help ``` ### Example ``` $ rbxcloud universe update-name -n "Experience Name" -p -u 12345 -a MY_KEY ``` ## Updating Description ``` Usage: rbxcloud universe update-description [OPTIONS] --universe-id --description --api-key Options: -u, --universe-id Universe ID -d, --description New Universe description -p, --pretty Pretty-print the JSON response -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -h, --help Print help ``` ### Example ``` $ rbxcloud universe update-description -n "Experience description here." -p -u 12345 -a MY_KEY ``` ## Restarting Servers ``` Usage: rbxcloud universe restart --universe-id --api-key Options: -u, --universe-id Universe ID -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -h, --help Print help ``` ### Example ``` $ rbxcloud universe restart -u 12345 -a MY_KEY ```