Notes Documentation: Get all notes

Hey,

could it be, that there is some wrong documentation on the notes endpoint:
https://developers.pipedrive.com/docs/api/v1/Notes#getNotes

The contract describes the ‘additional Data’ Part of the Response as:

{
    "success": true,
    "data": [
       //...
    ],
    "additional_data": {
        "limit": 100,
        "more_items_in_collection": false,
        "start": 0
    }
}

But cURL tells me it looks like:

    "additional_data": {
        "pagination": {
            "start": 0,
            "limit": 100,
            "more_items_in_collection": false
        }
    }

So your documentation seems to ommit the pagination element, as the gathering point…

Hi @Thomas_Lange,
This indeed is a discrepancy on our side and our dev team responsible for this feature has been notified to change it!
Thank you for letting us know! :rocket:

1 Like