- Introduction
- Changelog Release
- Local Development
- Child
- daily-note-controller
- fetus-image-controller
- file-controller
- migration-controller
- milestone-controller
- mood-tracker-controller
- mother-weight-controller
- pregnancy-controller
get list of daily notes
POST
/daily-notes
daily-note-controller
Request
Body Params application/json
childId
integer <int64>
optional
Example:
4
endDate
object
optional
Example:
2000-10-31
startDate
object
optional
Example:
2000-10-31
Example
{
"childId": 4,
"endDate": "2000-10-31",
"startDate": "2000-10-31"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/daily-notes' \
--header 'Content-Type: application/json' \
--data-raw '{
"childId": 4,
"endDate": "2000-10-31",
"startDate": "2000-10-31"
}'
Responses
🟢200OK
application/json
Body
data
array[object (DailyNoteResponse) {4}]
optional
date
string <date-time>
optional
id
integer <int64>
optional
images
array[object (ImageResponse) {2}]
optional
notes
string
optional
Example
{
"data": [
{
"date": "2019-08-24T14:15:22Z",
"id": 0,
"images": [
{
"id": 0,
"url": "string"
}
],
"notes": "string"
}
]
}
Modified at 2023-01-24 09:44:30