Org

Manage salesforce orgs in sfp server

sfp server org delete

This command allows a sfp server administrator to delete a registered salesforce org in the sfp server

USAGE
  $ sfp server org delete -u <value> [--json] [--repository <value>] [-e <value>] [-t <value>] [--sfp-server-url
    <value>] [-g <value>...] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]

FLAGS
  -e, --email=<value>               [env: SFP_SERVER_USER] Email address for authenticated user. Ignored if
                                    --application-token is provided.
  -g, --logsgroupsymbol=<value>...  Symbol used by CICD platform to group/collapse logs in the console. Provide an
                                    opening group, and an optional closing group symbol.
  -t, --application-token=<value>   [env: SFP_SERVER_TOKEN] Application token for CI/CD authentication. Takes precedence
                                    over --email.
  -u, --username=<value>            (required) The username of the org that is locally authenticated
      --loglevel=<option>           [default: info] logging level for this command invocation
                                    <options: trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL>
      --repository=<value>          The repository identifier. E.g `owner/repo`
      --sfp-server-url=<value>      [env: SFP_SERVER_URL] URL of the SFP server. Can be set via environment variable
                                    `SFP_SERVER_URL` or config: sfp config:set server-url

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  This command allows a sfp server administrator to delete a registered salesforce org  in the sfp server

EXAMPLES
  $ sfp server org delete --username [email protected] --email [email protected]

See code: src/commands/server/org/delete.tsarrow-up-right

sfp server org get-default-devhub

Get the default DevHub from the server with authentication details

See code: src/commands/server/org/get-default-devhub.tsarrow-up-right

sfp server org list

This command allows a sfp server administrator to list all the salesforce orgs registerd in sfp server

See code: src/commands/server/org/list.tsarrow-up-right

sfp server org login

Authenticate to a Salesforce org registered in sfp server. This command fetches the org's authentication details from the server and creates a local authentication for use with Salesforce CLI commands.

See code: src/commands/server/org/login.tsarrow-up-right

sfp server org register

This command allows a sfp server administrator to register a locally authenticated (web login) salesforce to the sfp server

See code: src/commands/server/org/register.tsarrow-up-right

sfp server org register-sandbox

Register a Salesforce sandbox with the sfp server using credentials from an already registered production org

See code: src/commands/server/org/register-sandbox.tsarrow-up-right

sfp server org update

Update a Salesforce org registration with DevHub status, default flag, or metadata

See code: src/commands/server/org/update.tsarrow-up-right

Last updated

Was this helpful?