Create Request Mapping to show user's CV cards, create them and delete.
-
GET /services/user/{id}
List of someone's CV cards. Only cards with hidden=false will be shown. Specify user id as a path variable to check his/her public CV cards.
If you specify your user id you will get your CV cards including reserved (hidden=true).
-
GET /services
List of your CV cards
-
GET /services/subjects
List of available subjects for which you can create new CV Card. Other subjects are unavailable since you already create CV Cards with them.
-
POST /services
In case you as a tutor want to create a CV card offering help for a particular subject.
Your CV cards must have unique subjects. So, you can't create several cards with the same subject. To get information of available subjects, for which you can create a CV card, check the following GET /services/subjects request.
-
PUT /services/{id}
In case you as a tutor want to create a CV card offering help for a particular subject.
Your CV cards must have unique subjects. So, you can't create several cards with the same subject. To get information of available subjects, for which you can create a CV card, check the following GET /services/subjects request.
-
DEL /services/{id}
Delete your CV Card specifying its card id as the path variable. You can delete only your created cards.
Create Request Mapping to show user's CV cards, create them and delete.
GET
/services/user/{id}List of someone's CV cards. Only cards with hidden=false will be shown. Specify
user idas a path variable to check his/her public CV cards.If you specify your
user idyou will get your CV cards including reserved (hidden=true).GET
/servicesList of your CV cards
GET
/services/subjectsList of available subjects for which you can create new CV Card. Other subjects are unavailable since you already create CV Cards with them.
POST
/servicesIn case you as a tutor want to create a CV card offering help for a particular subject.
PUT
/services/{id}In case you as a tutor want to create a CV card offering help for a particular subject.
DEL
/services/{id}Delete your CV Card specifying its
card idas the path variable. You can delete only your created cards.