get https://hover.to/api/v2/deliverable_change_requests
Why would I use this?
You might use this endpoint to list all jobs which have had a Change Request. This may be useful if you are trying to gather at data to understand what jobs change most commonly.
Response Code Snippet
See an example 200 response here, a JSON blob detailing the changes, then follow below to learn more about the request, and what makes up the responses.
{
"results": [{
"id": 164541,
"job_id": 963123,
"user_id": 867456,
"new_deliverable_id": 3,
"old_deliverable_id": 2,
"changed_at": null,
"created_at": "2018-03-14T20:29:54.366Z",
"updated_at": "2018-03-14T20:29:54.537Z",
"state": "complete"
}]
}