Skip to main content
GET
/
live-updates
/
{id}
Get Live Update
curl --request GET \
  --url https://playground.answeringagent.com/api/v1/live-updates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 1,
    "title": "Temporary System Maintenance",
    "message": "We are currently performing system maintenance. Expected completion time is 2 PM.",
    "type": "announcement",
    "starts_at": "2025-07-25T14:00:00Z",
    "expires_at": "2025-07-25T16:00:00Z",
    "is_cancelled": false,
    "created_at": "2025-07-25T10:30:00Z",
    "updated_at": "2025-07-25T11:45:00Z",
    "phone_numbers": [
      {
        "id": 1,
        "name": "Main Office",
        "phone_number": "+1234567890"
      }
    ],
    "created_by": {
      "id": 1,
      "name": "John Doe",
      "email": "[email protected]"
    },
    "history": [
      {
        "id": 123,
        "action": "created",
        "changes": {},
        "created_at": "2023-11-07T05:31:56Z",
        "user": {
          "id": 123,
          "name": "<string>",
          "email": "<string>"
        }
      }
    ]
  },
  "message": "Live update retrieved successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

The ID of the live update

Response

Live update details retrieved successfully

data
object
message
string
Example:

"Live update retrieved successfully"