mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
693dbc361f
* Fix Vale style warnings across docs from past week of merges Generated-By: mintlify-agent * Apply suggestion from @ethanpalm * Apply suggestion from @ethanpalm * Apply suggestion from @ethanpalm * Apply suggestion from @ethanpalm * Apply suggestion from @ethanpalm * Apply suggestions from code review Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> --------- Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
22 lines
675 B
Plaintext
22 lines
675 B
Plaintext
---
|
|
title: "Send follow-up message"
|
|
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 agent processes the message 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"}'
|
|
```
|