Skip to content

Organizations, Integrations & Secrets

Get details for the current organization, including its slug:

Terminal window
superplane organizations get

Update the current organization’s name, description, or slug:

Terminal window
superplane organizations update --name "New Name" --description "New description" --slug "new-slug"

The slug must be URL-friendly: lowercase letters, numbers, and hyphens only, with no leading, trailing, or repeated hyphens. Slugs are unique across SuperPlane, so organizations update returns an error if the slug you request is already taken. Changing the slug changes the organization’s URL (app.superplane.com/<slug>/...), so update any bookmarks or shared links after a rename.

List connected integrations:

Terminal window
superplane integrations list

Get details for one connected integration:

Terminal window
superplane integrations get <connected_integration_id>

List resources available from a connected integration:

Terminal window
superplane integrations list-resources --id <connected_integration_id> --type <resource_type>

You can pass additional query parameters when needed:

Terminal window
superplane integrations list-resources \
--id <connected_integration_id> \
--type <resource_type> \
--parameters key=value,key2=value2

List secrets:

Terminal window
superplane secrets list

Create a secret from a file:

Terminal window
superplane secrets create --file my_secret.yaml

Update a secret from a file:

Terminal window
superplane secrets update --file my_secret.yaml

Delete a secret:

Terminal window
superplane secrets delete <secret_name_or_id>