Files
mintlify__docs/api/agent/v2/send-message.mdx

22 lines
771 B
Plaintext

---
title: "Send follow-up message"
description: "Send a follow-up message to an existing agent job to provide additional instructions."
openapi: /admin-openapi.json POST /v2/agent/{projectId}/job/{id}/message
keywords: ["agent job", "message", "follow-up", "send"]
---
Send a follow-up instruction to an existing agent job. The message is processed asynchronously — poll the [get agent job](/api/agent/v2/get-agent-job) endpoint to track progress.
## Rate limits
- 100 uses per Mintlify project per hour
## Usage
```bash
curl -X POST https://api.mintlify.com/v2/agent/{projectId}/job/{id}/message \
-H "Authorization: Bearer mint_xxxxx" \
-H "Content-Type: application/json" \
-d '{"prompt": "Also add error handling examples to the quickstart guide"}'
```