PATCH
/
v2
/
objectives
/
{objectives_id}
curl --request PATCH \
--url https://tavusapi.com/v2/objectives/{objectives_id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '[
{
"op": "replace",
"path": "/objective_name",
"value": "updated_objective_name"
}
]'
{
  "message": "Objective updated successfully"
}

Authorizations

x-api-key
string
header
required

Path Parameters

objectives_id
string
required

The unique identifier of the objective.

Example:

"o12345"

Body

application/json · object[]

The body is of type object[].

Response

200
application/json

Objective updated successfully

The response is of type object.