Skip to main content
DELETE
/
projects
/
{idOrName}
cURL
curl --request DELETE \
  --url https://api.youappz.dev/projects/{idOrName} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "teamId": "<string>",
  "alias": "<string>",
  "buildCommand": "<string>",
  "devCommand": "<string>",
  "installCommand": "<string>",
  "framework": "<string>",
  "outputDirectory": "<string>",
  "commandForIgnoringBuildStep": "<string>",
  "createdAt": 123,
  "updatedAt": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

idOrName
string
required

The unique project identifier or the project name

Example:

"prj_LLHUOMOoDlqOp8wPE4kFo9pE or my-project-name"

Query Parameters

teamId
string
required

The Team identifier or Team slug to perform the request on behalf of.

Example:

"team_xbtegd63gdg5636gdg"

slug
string
required

The Team slug to perform the request on behalf of.

Example:

"my-team"

Response

The project was successfuly removed

id
string
required
name
string | null
required
teamId
string | null
required
alias
string | null
required
buildCommand
string | null
required
devCommand
string | null
required
installCommand
string | null
required
framework
string | null
required
outputDirectory
string | null
required
commandForIgnoringBuildStep
string | null
required
createdAt
number
required
updatedAt
number
required