Organizations, Integrations & Secrets
Managing organizations
Section titled “Managing organizations”Get details for the current organization, including its slug:
superplane organizations getUpdate the current organization’s name, description, or slug:
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.
Managing integrations
Section titled “Managing integrations”List connected integrations:
superplane integrations listGet details for one connected integration:
superplane integrations get <connected_integration_id>List resources available from a connected integration:
superplane integrations list-resources --id <connected_integration_id> --type <resource_type>You can pass additional query parameters when needed:
superplane integrations list-resources \ --id <connected_integration_id> \ --type <resource_type> \ --parameters key=value,key2=value2Managing secrets
Section titled “Managing secrets”List secrets:
superplane secrets listCreate a secret from a file:
superplane secrets create --file my_secret.yamlUpdate a secret from a file:
superplane secrets update --file my_secret.yamlDelete a secret:
superplane secrets delete <secret_name_or_id>