Returns the list of Notes associated with a customer wthin the dealership
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
customer_id
- integer
- required
- The id of the customer
per_page
- integer
- Number of records returned in a collection in the response
page
- integer
- Page number returned from the collection based on the total records and records per response
api-version
- integer
- required
- Target API version
``200 Success
array of objects
object
id
- integer
- required
content
- string | null
- required
created_at
- date-time
- required
note_type
- string | null
- required
pinned?
- boolean
- required
readonly?
- boolean
- required
images
array of objects
required
images
- object
- id
- integer
- required
- image_url
- string
- required
- created_at
- string
- required
- updated_at
- date-time
- required
- author
- string
- required
``401 Unauthorized
``403 Forbidden
``404 Not found
``406 Not Acceptable
Updated3 months ago
ShellNodeRubyPHPPython
Bearer
Base URL
https://api.dealerware.com/admin/customers/{customer_id}/notes
xxxxxxxxxx
curl --request GET \
--url https://api.dealerware.com/admin/customers/customer_id/notes \
--header 'accept: application/json'
xxxxxxxxxx
[
{
"id": 12,
"content": "My notes content",
"created_at": "2023-02-13T16:08:34Z",
"note_type": "system",
"pinned?": true,
"readonly?": false,
"images": [
{
"id": 12,
"image_url": "https://example.com/image.png",
"created_at": "2023-02-13T16:08:34Z"
}
],
"updated_at": "2023-02-13T16:08:34Z",
"author": "Yu Song"
}
]
Updated3 months ago
Did this page help you?
- Yes
- No