GET
    /orders/{order}/notes
  
  curl \
 --request GET 'https://api.gb.enjovia.app/orders/{order}/notes' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Account-ID: string"
    
        Response examples (200)
  
  {
  "data": [
    {
      "content": "Customer called to confirm delivery address. Will be home after 3pm.",
      "created_at": "2024-01-15T14:30:00Z",
      "user": {
        "name": "Sarah Johnson"
      }
    }
  ],
  "links": {},
  "meta": {}
}