-
Notifications
You must be signed in to change notification settings - Fork 3
POST child logs
Register a collection of resource logs associated with a Child.
Permissions:
-
Application users can register logs of a given resource to any Child as long as the child exists.
-
A Child can register logs of a particular resource only for itself.
-
An Educator can register logs of a particular resource for any Child who exists and belongs to one of their groups.
-
A Family user can register logs of a particular resource for any Child that exists and is associated with it.
physicalactivities:create
POST https://localhost/v1/children/{child_id}/logs/{resource}
child_id: string (A 24-byte hex ID)
resource: string (steps, calories, active_minutes, lightly_active_minutes or sedentary_minutes)
[
{
"date": "2019-04-23",
"value": 14100
},
{
"date": "2019-04-24",
"value": -15687
},
{
"date": "2019-04-25",
"value": 0
},
{
"date": "2019-04-26",
"value": 2901
},
{
"date": "2019-04-277",
"value": 8561
}
]
curl -X POST "https://localhost/v1/children/5a62be07d6f33400146c9b61/logs/steps" -H "accept: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" -H "Content-Type: application/json" -d "[{"date":"2019-04-23","value":14100},{"date":"2019-04-24","value":15687},{"date":"2019-04-25","value":0},{"date":"2019-04-26","value":2901},{"date":"2019-04-27","value":8561}]"
-
207
Successful request, however, can have several status codes for the case of a list of submitted logs.{ "success": [ { "code": 201, "item": { "date": "2019-04-23", "value": 14100 } }, { "code": 201, "item": { "date": "2019-04-25", "value": 0 } }, { "code": 201, "item": { "date": "2019-04-26", "value": 2901 } } ], "error": [ { "code": 400, "message": "One or more request fields are invalid...", "description": "value can't be negative!", "item": { "date": "2019-04-24", "value": -15687 } }, { "code": 400, "message": "Date parameter: 2019-04-277, is not in valid ISO 8601 format.", "description": "Date must be in the format: yyyy-MM-dd", "item": { "date": "2019-04-277", "value": 8561 } } ] }
-
400
Validation errors-
- Example
{ "code": 400, "message": "Required fields were not provided...", "description": "date, value are required!" }
- Example
-
Invalid type
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "The names of the allowed types are: steps, calories, active_minutes, lightly_active_minutes, sedentary_minutes." }
- Example
-
Invalid date
- Example
{ "code": 400, "message": "Date parameter: {datetime}, is not in valid ISO 8601 format.", "description": "Date must be in the format: yyyy-MM-dd" }
- Example
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "value can't be negative!" }
- Example
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "value must be a valid number!" }
- Example
-
403
Permission Error
OCARIoT API Gateway (Full documentation)
- POST institutions
- GET institutions
- GET institutions.inst_id
- PATCH institutions.inst_id
- DELETE institutions.inst_id
- POST children.physicalactivities
- GET children.physicalactivities
- GET children.physicalactivities.activity_id
- DELETE children.physicalactivities.activity_id
- POST children.weights
- GET children.weights
- GET children.weights.weight_id
- DELETE children.weights.weight_id
- POST children.bodyfats
- GET children.bodyfats
- GET children.bodyfats.bodyfat_id
- DELETE children.bodyfats.bodyfat_id
- POST educators.children.groups
- GET educators.children.groups
- GET educators.children.groups.group_id
- PATCH educators.children.groups.group_id
- DELETE educators.children.groups.group_id
- POST healthprofessionals
- GET healthprofessionals
- GET healthprofessionals.hprof_id
- PATCH healthprofessionals.hprof_id
- POST healthprofessionals.children.groups
- GET healthprofessionals.children.groups
- GET healthprofessionals.children.groups.group_id
- PATCH healthprofessionals.children.groups.group_id
- DELETE healthprofessionals.children.groups.group_id
- POST institutions.environments
- GET institutions.environments
- DELETE institutions.environments
- DELETE institutions.environments.environment_id
- Invalid ID
- Invalid JSON format
- Missing fields
- Empty string
- Invalid string
- Invalid date
- Negative number
- Invalid number
- Unregistered institution
- Unregistered children
- Invalid children attribute type
- Invalid children items
- Empty ID(s) in children attribute
- ID(s) with invalid format in children
- Attempting to update password on wrong route
- Child does not exist
- Institution does not exist