Skip to content

Delete Project

codecatalyst_delete_project R Documentation

Deletes a project in a space

Description

Deletes a project in a space.

Usage

codecatalyst_delete_project(spaceName, name)

Arguments

spaceName

[required] The name of the space.

name

[required] The name of the project in the space. To retrieve a list of project names, use list_projects.

Value

A list with the following syntax:

list(
  spaceName = "string",
  name = "string",
  displayName = "string"
)

Request syntax

svc$delete_project(
  spaceName = "string",
  name = "string"
)