Skip to main content
PATCH
/
projects
/
{project_id}
/
tags
/
{tag_id}
curl --location --request PATCH 'https://api.withblast.com/projects/550e8400-e29b-41d4-a716-446655440000/tags/105' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "tag": "experiment-v3"
}'
{
  "tag_id": 105,
  "tag": "experiment-v3",
  "project_id": "550e8400-e29b-41d4-a716-446655440000",
  "created_at": "2024-01-23T15:30:00Z"
}

Authentication

Authorization
string
required
Bearer token

Path Parameters

project_id
string
required
The unique identifier of the project (UUID format)
tag_id
integer
required
The unique identifier of the tag

Body Parameters

tag
string
required
The new tag name. Must be unique within the project.

Response

Returns the updated tag object.
tag_id
integer
required
Unique tag identifier
tag
string
required
Updated tag name
project_id
string
required
Associated project ID (UUID)
created_at
string
required
ISO 8601 timestamp of creation
curl --location --request PATCH 'https://api.withblast.com/projects/550e8400-e29b-41d4-a716-446655440000/tags/105' \
--header 'Authorization: Bearer YOUR_JWT_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "tag": "experiment-v3"
}'
{
  "tag_id": 105,
  "tag": "experiment-v3",
  "project_id": "550e8400-e29b-41d4-a716-446655440000",
  "created_at": "2024-01-23T15:30:00Z"
}