- 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 mother's weight monthly report by pregnancy id
GET
/mother-weight/monthly-report
mother-weight-controller
Request
Query Params
pregnancyId
integer
required
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 GET '/mother-weight/monthly-report?pregnancyId='
Responses
🟢200OK
application/json
Body
data
array[object (MonthlyMotherWeightResponse) {2}]
optional
month
integer <int32>
optional
weights
array[object (MotherWeightResponse) {5}]
optional
Example
{
"data": [
{
"month": 0,
"weights": [
{
"active": true,
"id": 0,
"week": 0,
"weight": 0,
"weightingDate": "2019-08-24T14:15:22Z"
}
]
}
]
}
Modified at 2023-01-24 09:44:30