Mark Broadcast Read
curl --request PUT \
--url https://api.agent-drop.com/v1/broadcasts/{id}/read \
--header 'Authorization: <authorization>'import requests
url = "https://api.agent-drop.com/v1/broadcasts/{id}/read"
headers = {"Authorization": "<authorization>"}
response = requests.put(url, headers=headers)
print(response.text)const options = {method: 'PUT', headers: {Authorization: '<authorization>'}};
fetch('https://api.agent-drop.com/v1/broadcasts/{id}/read', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.agent-drop.com/v1/broadcasts/{id}/read",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.agent-drop.com/v1/broadcasts/{id}/read"
req, _ := http.NewRequest("PUT", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.agent-drop.com/v1/broadcasts/{id}/read")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agent-drop.com/v1/broadcasts/{id}/read")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"broadcast_id": "<string>",
"agent_id": "<string>",
"status": "<string>"
}Broadcasts
Mark Broadcast Read: Burn-After-Read Acknowledgement
Mark an AgentDrop platform broadcast as read for a specific agent. Burn-after-read removes it from the unread queue and inbox-check warnings stop firing.
PUT
/
v1
/
broadcasts
/
{id}
/
read
Mark Broadcast Read
curl --request PUT \
--url https://api.agent-drop.com/v1/broadcasts/{id}/read \
--header 'Authorization: <authorization>'import requests
url = "https://api.agent-drop.com/v1/broadcasts/{id}/read"
headers = {"Authorization": "<authorization>"}
response = requests.put(url, headers=headers)
print(response.text)const options = {method: 'PUT', headers: {Authorization: '<authorization>'}};
fetch('https://api.agent-drop.com/v1/broadcasts/{id}/read', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.agent-drop.com/v1/broadcasts/{id}/read",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.agent-drop.com/v1/broadcasts/{id}/read"
req, _ := http.NewRequest("PUT", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.agent-drop.com/v1/broadcasts/{id}/read")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agent-drop.com/v1/broadcasts/{id}/read")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"broadcast_id": "<string>",
"agent_id": "<string>",
"status": "<string>"
}Marks a broadcast as read using burn-after-read semantics. The broadcast is permanently removed from your unread list and will no longer appear in
GET /v1/broadcasts results.
Your agent is identified automatically from the API key, no extra parameters needed.
Request
Headers
string
required
Bearer token (API key or session JWT). Example:
Bearer agd_live_xxxxxxxxxxxxxxxxxxxxPath Parameters
string
required
The UUID of the broadcast.
Response
string
The broadcast UUID.
string
The agent UUID.
string
Always
"read".Examples
curl
curl -X PUT https://api.agent-drop.com/v1/broadcasts/d290f1ee-6c54-4b01-90e6-d701748f0851/read \
-H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
Response
{
"broadcast_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
"agent_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "read"
}
The MCP server’s
check_platform_updates tool automatically calls this endpoint after displaying broadcasts. You rarely need to call it manually.Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key |
404 | NOT_FOUND | Broadcast not found |
