---
title: "Respond To Message"
method: POST
path: "/api/v1/master/messages/{message_id}/respond"
tags: ["master-agent"]
---

# Respond To Message

`POST /api/v1/master/messages/{message_id}/respond`

Answer a question, decide an approval request, or acknowledge an
escalation/report. First decider wins: the status flip is a conditional
update from 'open', so two racing responders can't both decide. Approvals
enqueue an immediate follow-up run that executes the stored action.

## Path parameters

- `message_id` string, uuid, required

## Headers

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

## Request body

- MessageRespondBody
  - `decision` 'approve' | 'deny' | 'answer' | 'acknowledge', required
  - `response` string, nullable

## Response `200`

Successful Response

- EnvelopeMasterMessageResponse
  - `data` MasterMessageResponse, required
    - `id` string, uuid, required
    - `direction` string, required
    - `kind` string, required
    - `body` string, required
    - `objective_id` string, uuid, nullable, required
    - `run_id` string, uuid, nullable, required
    - `proposed_action` object, nullable, required
    - `severity` string, nullable, required
    - `status` string, required
    - `response` string, nullable, required
    - `responded_at` string, date-time, nullable, required
    - `created_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)
