---
title: "Update Objective"
method: PATCH
path: "/api/v1/master/objectives/{objective_id}"
tags: ["master-agent"]
---

# Update Objective

`PATCH /api/v1/master/objectives/{objective_id}`

## Path parameters

- `objective_id` string, uuid, required

## Headers

- `authorization` string, nullable — Bearer <token>

## Request body

- ObjectiveUpdate
  - `title` string, nullable
  - `description` string, nullable
  - `status` 'active' | 'paused' | 'completed' | 'archived', nullable
  - `success_criteria` string, nullable
  - `config` ObjectiveConfig — Per-objective budgets enforced by the master's guardrail layer.
    - `max_agents` integer
    - `max_daily_sends` integer
    - `allowed_delivery_modes` string[]
  - `priority` integer, nullable
  - `target_date` string, date-time, nullable

## Response `200`

Successful Response

- EnvelopeObjectiveResponse
  - `data` ObjectiveResponse, required
    - `id` string, uuid, required
    - `title` string, required
    - `description` string, required
    - `objective_type` string, required
    - `status` string, required
    - `success_criteria` string, nullable, required
    - `config` object, nullable, required
    - `priority` integer, required
    - `target_date` string, date-time, nullable, required
    - `metrics` object, nullable, required
    - `created_by` string, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
  - `meta` Meta
    - `request_id` string
    - `timestamp` string, date-time
    - `total` integer, nullable
    - `truncated` boolean, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/minro/apis/minro-cs-platform.md) · [All operations](https://skmtc.dev/minro/apis/minro-cs-platform/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/minro/minro-cs-platform/revisions/eb854265cf29/schema)
