← Back to API Reference

PATCH /broadcasts/{id}

Update Broadcast

Compatibility endpoint to update broadcast data.

Request (cURL)

curl -X PATCH "http://localhost:8080/v1/broadcasts/id_123" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
  "subject": "Updated broadcast subject",
  "text": "Updated broadcast body"
}'

Response Example

{
  "id": "id_123"
}

Request Body Example

{
  "subject": "Updated broadcast subject",
  "text": "Updated broadcast body"
}