This API endpoint uses pagination.
To ensure all query results are received make sure to read our Pagination article.
Get a list of notes for a customer.
Example Response
{
"results": [
{
"noteId": 11,
"uri": "https://api.payjunction.com/customers/10040/notes/11",
"note": "This is a third note!",
"created": "2013-08-26T21:37:23Z",
"lastModified": "2013-08-26T21:37:23Z",
"user": {
"firstName": "John",
"lastName": "Doe"
}
},
{
"noteId": 10,
"uri": "https://api.payjunction.com/customers/10040/notes/10",
"note": "This is also a note!",
"created": "2013-08-26T20:37:17Z",
"lastModified": "2013-08-26T20:37:17Z",
"user": {
"firstName": "John",
"lastName": "Doe"
}
},
{
"noteId": 9,
"uri": "https://api.payjunction.com/customers/10040/notes/9",
"note": "This is a note.",
"created": "2013-08-26T19:37:10Z",
"lastModified": "2013-08-26T19:37:10Z",
"user": {
"firstName": "John",
"lastName": "Doe"
}
}
]
}