Skip to main content
PATCH
/
projects
/
{project_id}
/
tags
Update Project Tags
curl --request PATCH \
  --url https://www.corgea.app/api/v1/projects/{project_id}/tags \
  --header 'CORGEA-TOKEN: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "operation": "add",
  "tags": [
    "<string>"
  ]
}
'
{
  "status": "ok",
  "project": {
    "id": 123,
    "name": "<string>",
    "repo_url": "<string>",
    "tags": [
      "<string>"
    ]
  }
}

Authorizations

CORGEA-TOKEN
string
header
required

API key for authentication

Path Parameters

project_id
integer
required

The ID of the project to update

Body

application/json
operation
enum<string>
required

How to apply the provided tags to the current project tag list

Available options:
add,
remove,
replace
tags
string[]
required

Tags to add, remove, or replace after normalization

Response

Project tags updated successfully

status
string
Example:

"ok"

project
object