This API endpoint uses pagination.
To ensure all query results are received make sure to read our Pagination article.
Get notes for a transaction.
Example Response
{
"results": [
{
"noteId": 2,
"uri": "https://api.payjunction.com/transactions/1/notes/2",
"note": "This is a note that belongs to a transaction.",
"created": "2013-08-26T17:43:17Z",
"lastModified": "2013-08-26T17:43:17Z",
"user": {
"firstName": "John",
"lastName": "Keats"
}
},
{
"noteId": 1,
"uri": "https://api.payjunction.com/transactions/1/notes/1",
"note": "This is the first note on the transaction.",
"created": "2013-08-26T17:42:17Z",
"lastModified": "2013-08-26T17:42:17Z",
"user": {
"firstName": "John",
"lastName": "Keats"
}
}
]
}