Files
mintlify[bot] 82d887df98 Sync translations with English documentation updates (#5786)
Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
2026-05-21 23:38:35 +00:00

25 lines
828 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Envoyer un message de suivi"
openapi: /fr/admin-openapi.json POST /v2/agent/{projectId}/job/{id}/message
keywords: [ "tâche d’agent", "message", "suivi", "envoyer" ]
---
Envoyez une instruction de suivi à une tâche d’agent existante. Le message est traité de façon asynchrone — interrogez le point de terminaison [récupérer la tâche d’agent](/fr/api/agent/v2/get-agent-job) pour suivre sa progression.
<div id="rate-limits">
## Limites de débit
</div>
* 100 utilisations par projet Mintlify par heure
<div id="usage">
## Utilisation
</div>
```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"}'
```