# OrderedDataStore API ## List Entries ``` USAGE: rbxcloud ordered-datastore list [OPTIONS] --datastore-name --universe-id --api-key OPTIONS: -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -d --datastore-name DataStore name -f, --filter A range of qualifying values of entries to return -h, --help Print help information -m, --max-page-size Maximum number of items to return per page -o, --order-by The enumeration direction (Use 'desc' for descending) -p, --page-token Cursor for the next set of data -s, --scope DataStore scope -u, --universe-id Universe ID of the experience ``` ## Get Entry ``` USAGE: rbxcloud ordered-datastore get [OPTIONS] --datastore-name --id --universe-id --api-key OPTIONS: -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -d --datastore-name DataStore name -h, --help Print help information -i, --id The ID of the entry -s, --scope DataStore scope -u, --universe-id Universe ID of the experience ``` ## Create Entry ``` USAGE: rbxcloud ordered-datastore create [OPTIONS] --datastore-name --id --value --universe-id --api-key OPTIONS: -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -d --datastore-name DataStore name -h, --help Print help information -i, --id The ID of the entry -s, --scope DataStore scope -u, --universe-id Universe ID of the experience -v, --value The value of the entry ``` ## Update Entry ``` USAGE: rbxcloud ordered-datastore update [OPTIONS] --datastore-name --id --value --universe-id --api-key OPTIONS: -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -d --datastore-name DataStore name -h, --help Print help information -i, --id The ID of the entry -m, --allow-missing Create if missing [possible values: true, false] -s, --scope DataStore scope -u, --universe-id Universe ID of the experience -v, --value The value of the entry ``` ## Increment Entry ``` USAGE: rbxcloud ordered-datastore increment [OPTIONS] --datastore-name --id --increment --universe-id --api-key OPTIONS: -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -d --datastore-name DataStore name -h, --help Print help information -i, --id The ID of the entry -n, --increment The incremented value of the entry -s, --scope DataStore scope -u, --universe-id Universe ID of the experience ``` ## Delete Entry ``` USAGE: rbxcloud ordered-datastore delete [OPTIONS] --datastore-name --id --universe-id --api-key OPTIONS: -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -d --datastore-name DataStore name -h, --help Print help information -i, --id The ID of the entry -s, --scope DataStore scope -u, --universe-id Universe ID of the experience ```