Retrieve details of a specific live update including its history. Only accessible to users within the same team.
cURL
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" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the live update
Live update details retrieved successfully
Show child attributes
"Live update retrieved successfully"