Tokens commands

Reference for the `revenexx tokens` commands — every subcommand with a runnable example.

Auto-generated. This page is generated from the revenexx CLI by tools/sync-cli-reference.mjs. Don't edit it by hand — your changes will be overwritten.

Every revenexx tokens subcommand. The example shows the required arguments; the options table lists every flag the command accepts, with a ✓ marking required flags. Some flag names carry a -_ (e.g. --attribute-_values) — that is the exact token the CLI accepts, so copy them verbatim. Run revenexx tokens <command> --help for the live options.

create-file-token

Bash
revenexx tokens create-file-token \
    --bucket-id sample-id \
    --file-id sample-id
FlagRequiredDescription
--bucket-id <bucket-id>
--file-id <file-id>File unique ID.
--expire <expire>Token expiry date

delete

Bash
revenexx tokens delete \
    --token-id sample-id
FlagRequiredDescription
--token-id <token-id>Token ID.

get

Bash
revenexx tokens get \
    --token-id sample-id
FlagRequiredDescription
--token-id <token-id>Token ID.

list

Bash
revenexx tokens list \
    --bucket-id sample-id \
    --file-id sample-id
FlagRequiredDescription
--bucket-id <bucket-id>
--file-id <file-id>File unique ID.
--queries [queries...]
--total [value]When set to false, the total count returned will be 0 and will not be calculated.
--filter <column=value>Filter rows by column equality (repeatable).

update

Bash
revenexx tokens update \
    --token-id sample-id
FlagRequiredDescription
--token-id <token-id>Token unique ID.
--expire <expire>File token expiry date
Was this page helpful?