GET
/api/v1/notes
curl \
--request GET 'https://app.fridaypulse.com/api/v1/notes' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 1,
"text": "Great team work today!",
"action": "celebrate_success",
"author": {
"name": "John Doe",
"email": "john@example.com"
},
"flow_date": "2024-10-14",
"created_at": "2024-10-14T10:30:00Z"
},
{
"id": 2,
"text": "Thanks for helping with the project!",
"action": "thank_colleague",
"author": {
"name": "Jane Smith",
"email": "jane@example.com"
},
"flow_date": "2024-10-14",
"created_at": "2024-10-14T11:00:00Z",
"recipients": [
{
"name": "John Doe",
"email": "john@example.com"
}
]
}
]