Skip to main content
PATCH
https://api.unify.ai
/
v0
/
logs
/
plots
/
{token}
curl --request PATCH \
  --url 'https://api.unify.ai/v0/logs/plots/<token>' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "url": "string",
    "token": "string",
    "plot_config": "object",
    "project_config": "object",
    "plot_metadata": "object",
    "user_metadata": "object",
    "inferred_config": "any | null"
}
Update a plot. Requires project:write permission on the plot’s project.

Authorizations

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

Path Parameters

token
string
required

Body

title
string | null
New title for the plot
plot_config
any | null
New plot configuration
project_config
any | null
New project configuration
curl --request PATCH \
  --url 'https://api.unify.ai/v0/logs/plots/<token>' \
  --header "Authorization: Bearer $UNIFY_KEY"
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "url": "string",
    "token": "string",
    "plot_config": "object",
    "project_config": "object",
    "plot_metadata": "object",
    "user_metadata": "object",
    "inferred_config": "any | null"
}