CRUD service for clients and its users
Request:
POST /v1/clients
{"id": "test"}
Response created:
201 CREATED
Location: /v1/clients/test
Response client already exists:
409 CONFLICT
{"message":"client already exists"}
Request:
POST /v1/clients/{{clientID}}/users
{"full_name": "My User", "names": ["My", "User"], "email":"[email protected]"}
Response created:
201 CREATED
Location: /v1/clients/{{clientID}}/users/{{userID}}
Errorcases: //TBD
Request:
GET /v1/internal/alive
Response:
200 OK
{"alive":true}