Skip to main content

subscriptions

This command enables the management of Subscriptions.

Commands

CommandDescription
listthis command lists all the subscriptions available in your environment for a specific topic or source.
inspectthis command retrieves the subscription with the specified ID.
createthis command creates a new subscription for the Qala CLI.
updatethis command updates an existing subscription for the Qala CLI.
deletethis command deletes the subscription with the specified ID.
secretthis command allows you to inspect and rotate secrets for a subscription.

list

this command lists all the subscriptions available in your environment for a specific topic or source.

Options:

OptionDescription
sourceThe name of the source.
topicThe name of the topic.

Examples:

qala subscriptions ls --topic <TOPIC_NAME>
qala subscriptions ls --source <SOURCE_NAME>

inspect

this command retrieves the subscription with the specified ID.

Options:

OptionDescription
sourceThe name of the source.
s / subscriptionThe name of the subscription.
topicThe name of the topic.

Examples:

qala subscriptions i --topic <TOPIC_NAME> -s <SUBSCRIPTION_NAME>
qala subscriptions i --source <SOURCE_NAME> -s <SUBSCRIPTION_NAME>

create

this command creates a new subscription for the Qala CLI.

Options:

OptionDescription
a / audienceThe audience to scope the subscription - for topics.
d / descriptionThe description of the subscription.
e / eventsThe comma separated list of event type names.
m / max-attemptsThe maximum delivery attempts of the subscription.
n / nameThe name of the subscription.
sourceThe name of the source.
topicThe name of the topic.
u / urlThe webhook url of the subscription.

Examples:

qala sub create -n <SUBSCRIPTION_NAME>  --topic <TOPIC_NAME> -d <DESCRIPTION> -e  <EVENTS_COMMA_SEPERATED_NAMES> -u <WEBHOOK_URL> -m  <MAX_DELIVERY_ATTEMPTS> -a <AUDIENCE>

update

this command updates an existing subscription for the Qala CLI.

Options:

OptionDescription
a / audienceThe audience to scope the subscription - for topics.
d / descriptionThe description of the subscription.
e / eventsThe comma separated list of event type names.
m / max-attemptsThe maximum delivery attempts of the subscription.
n / nameThe new name of the subscription.
sourceThe name of the source.
topicThe name of the topic.
u / urlThe webhook url of the subscription.

Examples:

qala sub update <SUBSCRIPTION_NAME> --topic  <TOPIC_NAME> -n <NEW_NAME> -d <DESCRIPTION> -e  <EVENTS_COMMA_SEPERATED_NAMES> -u <WEBHOOK_URL> -m  <MAX_DELIVERY_ATTEMPTS> -a <AUDIENCE>

delete

this command deletes the subscription with the specified ID.

Options:

OptionDescription
sourceThe name of the source.
s / subscriptionThe name of the subscription.
topicThe name of the topic.

Examples:

qala sub delete --topic <TOPIC_NAME>  --subscription <SUBSCRIPTION_NAME>