Integration
Configure external integrations
sfp server integration createsfp server integration deletesfp server integration getsfp server integration list
sfp server integration create
Create an integration for specific projects or globally
USAGE
$ sfp server integration create --provider <value> --auth-type <value> [--json] [--repository <value>] [-e <value>] [-t
<value>] [--sfp-server-url <value>] [--project <value>... | --global] [--token <value>] [--client-id <value>]
[--client-secret <value>]
FLAGS
-e, --email=<value> Email address for authenticated user. Ignored if --application-token is provided. Can
be set via SFP_SERVER_USER env var.
-t, --application-token=<value> Application token for CI/CD authentication. Can be set via SFP_SERVER_TOKEN env var
(CLI flags take precedence over env vars).
--auth-type=<value> (required) Authentication type (e.g., pat, oauth, app)
--client-id=<value> OAuth client ID
--client-secret=<value> OAuth client secret
--global Store as global integration (available to all projects)
--project=<value>... Project identifier (can be specified multiple times)
--provider=<value> (required) Integration provider (e.g., github)
--repository=<value> The repository identifier. E.g `owner/repo` for GitHub/GitLab or `org/project/repo`
for Azure DevOps
--sfp-server-url=<value> URL of the SFP server. Can be set via SFP_SERVER_URL env var or config: sfp
config:set server-url
--token=<value> Personal access token for PAT auth
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Create an integration for specific projects or globallySee code: src/commands/server/integration/create.ts
sfp server integration delete
Delete an integration
USAGE
$ sfp server integration delete -i <value> [--json] [--repository <value>] [-e <value>] [-t <value>] [--sfp-server-url
<value>]
FLAGS
-e, --email=<value> Email address for authenticated user. Ignored if --application-token is provided. Can
be set via SFP_SERVER_USER env var.
-i, --id=<value> (required) Integration ID to delete
-t, --application-token=<value> Application token for CI/CD authentication. Can be set via SFP_SERVER_TOKEN env var
(CLI flags take precedence over env vars).
--repository=<value> The repository identifier. E.g `owner/repo` for GitHub/GitLab or `org/project/repo`
for Azure DevOps
--sfp-server-url=<value> URL of the SFP server. Can be set via SFP_SERVER_URL env var or config: sfp
config:set server-url
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Delete an integration
EXAMPLES
$ sfp server integration delete --id <integration-id>
$ sfp server integration delete --id <integration-id> --jsonSee code: src/commands/server/integration/delete.ts
sfp server integration get
Get integration credentials by project
USAGE
$ sfp server integration get [--json] [--repository <value>] [-e <value>] [-t <value>] [--sfp-server-url <value>]
[--provider <value>] [--project <value>]
FLAGS
-e, --email=<value> Email address for authenticated user. Ignored if --application-token is provided. Can
be set via SFP_SERVER_USER env var.
-t, --application-token=<value> Application token for CI/CD authentication. Can be set via SFP_SERVER_TOKEN env var
(CLI flags take precedence over env vars).
--project=<value> Filter by project identifier
--provider=<value> Filter by provider (e.g., github)
--repository=<value> The repository identifier. E.g `owner/repo` for GitHub/GitLab or `org/project/repo`
for Azure DevOps
--sfp-server-url=<value> URL of the SFP server. Can be set via SFP_SERVER_URL env var or config: sfp
config:set server-url
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Get integration credentials by projectSee code: src/commands/server/integration/get.ts
sfp server integration list
List all integrations
USAGE
$ sfp server integration list [--json] [--repository <value>] [-e <value>] [-t <value>] [--sfp-server-url <value>] [-p
<value>]
FLAGS
-e, --email=<value> Email address for authenticated user. Ignored if --application-token is provided. Can
be set via SFP_SERVER_USER env var.
-p, --provider=<value> Filter by provider (github, jira)
-t, --application-token=<value> Application token for CI/CD authentication. Can be set via SFP_SERVER_TOKEN env var
(CLI flags take precedence over env vars).
--repository=<value> The repository identifier. E.g `owner/repo` for GitHub/GitLab or `org/project/repo`
for Azure DevOps
--sfp-server-url=<value> URL of the SFP server. Can be set via SFP_SERVER_URL env var or config: sfp
config:set server-url
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
List all integrations
EXAMPLES
$ sfp server integration list
$ sfp server integration list --provider github
$ sfp server integration list --jsonSee code: src/commands/server/integration/list.ts