You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Method DELETE resource /api/users/{email}, responses: 200 if success, 404 if user not found or 500 internal error.
Request body: none
Response body: none
Get all users
Method GET resource /api/users, responses: 200 if success, or 500 internal error.
Response body:
Method GET resource /api/users/{email}/jobs, responses: 200 if success, 404 if user not found or 500 internal error.
Optional query params: startDate=MM-DD-YYYY, emailSent=yes/no
Response body:
[]
The text was updated successfully, but these errors were encountered:
Create user
Method
POST
, resource/api/users
, responses:201
if success,400
if problem or500
internal error.Request body:
Response body: what was created.
Update user
Method
PATCH
resource/api/users/{email}
, responses:200
if success,404
if user not found or500
internal error.Request body:
Response body: the entire user entity.
Disable user
Method
DELETE
resource/api/users/{email}
, responses:200
if success,404
if user not found or500
internal error.Request body: none
Response body: none
Get all users
Method
GET
resource/api/users
, responses:200
if success, or500
internal error.Response body:
Get all user's job
Method
GET
resource/api/users/{email}/jobs
, responses:200
if success,404
if user not found or500
internal error.Optional query params:
startDate=MM-DD-YYYY
,emailSent=yes/no
Response body:
The text was updated successfully, but these errors were encountered: