Skip to main content
PATCH
/
api
/
v1
/
execution-tags
/
{id}
Update an execution tag
curl --request PATCH \
  --url https://api.mentionlab.io/api/v1/execution-tags/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-project-id: <x-project-id>' \
  --data '
{
  "name": "important",
  "color": "#3B82F6"
}
'

Headers

x-project-id
string
required

Project ID to specify the project context

Path Parameters

id
string
required

UUID of the execution tag to update.

Body

application/json
name
string

Name of the tag

Example:

"important"

color
string

Color of the tag in hex format

Example:

"#3B82F6"

Response