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

per_page

page

api-version

``200 Success

array of objects
object

id

content

created_at

note_type

pinned?

readonly?

images

``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?