GET
/
schedules
/
{schedule}
/
updates
/
{update}
curl --request GET \
  --url http://localhost/api/schedules/{schedule}/updates/{update}
{
  "data": {
    "id": "<string>",
    "type": "updates",
    "attributes": {
      "id": "<string>",
      "updateable_id": "<string>",
      "updateable_type": "<string>",
      "message": "<string>",
      "status": {
        "human": "<string>",
        "value": "<string>"
      },
      "created": {
        "human": "<string>",
        "string": "<string>"
      },
      "updated": {
        "human": "<string>",
        "string": "<string>"
      }
    }
  }
}

Path Parameters

schedule
integer
required

The schedule ID

update
integer
required

The update ID

Query Parameters

include
string

Available includes are schedule, scheduleCount, scheduleExists. You can include multiple options by separating them with a comma.

Response

200
application/json
`Update`

The response is of type object.