-
Notifications
You must be signed in to change notification settings - Fork 3
POST families.children
JeffMedeiros edited this page Nov 29, 2019
·
1 revision
Associates a child with a family by id.
Permissions:
- Only Admin user can do this.
families:create
POST https://localhost/v1/families/{family_id}/children/{child_id}
family_id: string (A 24-byte hex ID)
child_id: string (A 24-byte hex ID)
curl -X POST "https://localhost/v1/families/5db202c1bbaa611e0b1d5e53/children/5db1f8f0bbaa611e0b1d5e52" -H "accept: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
-
200
Child associated sucessfully.{ "id": "5db202c1bbaa611e0b1d5e53", "username": "family01", "institution_id": "5db05279fcfefe5c3de20497", "children": [ { "id": "5db1cf65099ed31587a74cf3", "username": "BR0001", "institution_id": "5db05279fcfefe5c3de20497", "gender": "male", "age": 11 }, { "id": "5db1f8f0bbaa611e0b1d5e52", "username": "NEW_CHILD", "institution_id": "5db05279fcfefe5c3de20497", "gender": "male", "age": 12 } ] }
-
400
Validation errors-
The child is not registered
{ "code": 400, "message": "The association could not be performed because the child does not have a record." }
-
403
Permission Error -
404
Not Found 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