-
Notifications
You must be signed in to change notification settings - Fork 1
PATCH institution by ID
JeffMedeiros edited this page Dec 2, 2019
·
5 revisions
Updates a institution data.
Permissions:
- Admin user can update data from any institution.
- Educator and Health Professional users can update data only from the institution to which they belong.
institutions:update
PATCH https://localhost:3001/v1/institutions/{institution_id}
institution_id: string (A 24-byte hex ID)
{
"type": "Institute of Scientific Research",
"name": "NUTES/UEPB",
"address": "Av. Juvêncio Arruda, S/N - Universitário, Campina Grande - PB, 58429-600",
"latitude": "-7.2100766",
"longitude": "-35.9175756"
}
curl -X PATCH "https://localhost:3001/v1/institutions/5a62be07de34500146d9c544" -H "accept: application/json" -H "Content-Type: application/json" -d "{"name":"NUTES/UEPB"}"
-
200
Updated institution data.{ "id": "5db32dcabec1431c51ae15fc", "type": "Institute of Scientific Research", "name": "NUTES/UEPB", "address": "Av. Juvêncio Arruda, S/N - Universitário, Campina Grande - PB, 58429-600", "latitude": "-7.2100766", "longitude": "-35.9175756" }
-
400
Validation errors-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "type must have at least one character!" }
-
- Example
{ "code": 400, "message": "One or more request fields are invalid...", "description": "type must be a string!" }
-
404
Not Found Error -
409
Conflict Error
OCARIoT Account Microservice API (Full documentation)
- POST institutions
- GET institutions
- GET institutions.inst_id
- PATCH institutions.inst_id
- DELETE institutions.inst_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