Mention the password field in the resource examples of the providers, secretaries and admin records.

This commit is contained in:
Alex Tselegidis 2020-10-19 19:24:15 +03:00
parent 0324a3e464
commit faa22ad972
1 changed files with 9 additions and 0 deletions

View File

@ -245,6 +245,7 @@ You can also try the GET requests with your browser by navigating to the respect
"notes": "Test admin notes.",
"settings":{
"username": "chrisdoe",
"password": "p@ssw0rd",
"notifications": true,
"calendarView": "default"
}
@ -256,6 +257,8 @@ You can also try the GET requests with your browser by navigating to the respect
- `PUT /api/v1/admins/:id` Provide the updated admin JSON in the request body to update an existing record. The ID in the URI is required.
- `DELETE /api/v1/admins/:id` Remove an existing admin record.
**Note: The `password` field is optional and should only be provided when creating (POST) or updating (PUT) a record.**
### Providers
**Resource JSON**
@ -280,6 +283,7 @@ You can also try the GET requests with your browser by navigating to the respect
],
"settings":{
"username": "chloedoe",
"password": "p@ssw0rd",
"notifications":true,
"googleSync":true,
"googleCalendar": "calendar-id",
@ -341,6 +345,8 @@ You can also try the GET requests with your browser by navigating to the respect
- `PUT /api/v1/providers/:id` Provide the updated provider JSON in the request body to update an existing record. The ID in the URI is required.
- `DELETE /api/v1/providers/:id` Remove an existing provider record.
**Note: The `password` field is optional and should only be provided when creating (POST) or updating (PUT) a record.**
### Secretaries
**Resource JSON**
@ -363,6 +369,7 @@ You can also try the GET requests with your browser by navigating to the respect
],
"settings":{
"username":"chrisdoe",
"password":"p@ssw0rd",
"notifications": true,
"calendarView": "default"
}
@ -374,6 +381,8 @@ You can also try the GET requests with your browser by navigating to the respect
- `PUT /api/v1/secretaries/:id` Provide the updated secretary JSON in the request body to update an existing record. The ID in the URI is required.
- `DELETE /api/v1/secretaries/:id` Remove an existing secretary record.
**Note: The `password` field is optional and should only be provided when creating (POST) or updating (PUT) a record.**
### Settings
**Resource JSON**