mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
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"}'
|
|
```
|