# Get company notes

You can return a list of all your notes connected to a specific company.

GET /companies/:company_id/notes/

Attributes Type Reuired Description
company_id integer yes A unique identifier for the company which is given by User.com automatically.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/companies/:company_id/notes/"

# Response

{
  "next": null,
  "results": [
    {
      "author": 382,
      "note": "my note",
      "id": 27785
    },
    {
      "author": 382,
      "note": "very useful note",
      "id": 27787
    },
    {
      "author": 382,
      "note": "another awesome note",
      "id": 27788
    }
  ],
  "count": 3,
  "previous": null
}