Get the notes for a contract
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
contract_id
integer
required
the Contract ID
page
integer
Page number returned from the collection based on the total records and records per response
per_page
integer
Number of records to include in the page
api-version
integer
required
Target API version
``200 Success
array of objects
object
author
string
Author of note
content
string
Note text
id
integer
ID of note
note_type
string
The type of note, either system or user. May affect the behavior of the note
readonly?
boolean
Whether or not the note is readonly, which may affect whether or not it can be edited or deleted
updated_at
string
Time note was last updated
``404 Not found
curl --request GET \
--url https://api.dealerware.com/admin/contracts/contract_id/notes \
--header 'accept: application/json'
``
[
{
"author": "Clever D. Corgi",
"content": "Requests cars with only 3 tires",
"id": 1,
"note_type": "system",
"readonly?": false,
"updated_at": "2017-09-06T10:00:00Z"
}
]