-
Notifications
You must be signed in to change notification settings - Fork 3
POST healthprofessionals
JeffMedeiros edited this page Nov 29, 2019
·
1 revision
Register a new health professional.
Permissions:
- Only Admin user can do this.
healthprofessionals:create
{
"username": "healthprofessional01",
"password": "mys3cr3tp4ss",
"institution_id": "5a62be07de34500146d9c624"
}
curl -X POST "https://localhost/v1/healthprofessionals" -H "accept: application/json" -H "Authorization: Bearer YOUR_ACCESS_TOKEN" -H "Content-Type: application/json" -d "{"username":"healthprofessional01","password":"mys3cr3tp4ss","institution_id":"5a62be07de34500146d9c624"}"
-
201
Health professional saved sucessfully.{ "id": "5db2ef6bbec1431c51ae15f8", "username": "healthprofessional01", "institution_id": "5a62be07de34500146d9c624", "children_groups": [] }
-
400
Validation errors-
- Example
{ "code": 400, "message": "Required fields were not provided...", "description": "username, password, institution are required!" }
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "Username must have at least one character!" }
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "username must be a string!" }
-
403
Permission Error -
409
Conflict 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