1. user
DevTest BackEnd
  • user
    • register user
      POST
    • get all users
      GET
    • get user
      GET
  • company
    • register company
      POST
    • get company
      GET
    • get all company
      GET
  • job
    • add job
      POST
    • get all jobs
      GET
    • get job by id
      GET
  • application
    • apply
      POST
  • auth
    • user
      • reset password
      • auth - login user
      • redefinir password
    • company
      • redefinir password
      • reset password
      • auth - login company
  • job_favorite
    • add job in favoites
      POST
    • get jobs favorites
      GET
  • /Api
    GET
  • Schemas
    • user
    • job
    • company
  1. user

register user

Developing
Develop Env
http://localhost:5000/api
Develop Env
http://localhost:5000/api
POST
/user/create

Request

Body Params application/json

Example
{
    "name": "Francisco Pedro",
    "email": "franciscojoaopedro1998@gmail.com",
    "country": "Angola",
    "gender": "male",
    "age": 25,
    "password": "#1234567",
    "phone": "+24493748901"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:5000/api/user/create' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Francisco Pedro",
    "email": "franciscojoaopedro1998@gmail.com",
    "country": "Angola",
    "gender": "male",
    "age": 25,
    "password": "#1234567",
    "phone": "+24493748901"
}'

Responses

🟢200Success
application/json
Body

Example
{"success":true,"message":"user created","data":{"id":"f7b2fedd-74fd-441a-9f50-00e1835e17dc","name":"Karla Baumbach","email":"Werner92@yahoo.com","age":25,"country":"Saint Pierre and Miquelon","phone":"203.438.1389 x50113","gender":"female"}}
Modified at 2024-11-18 10:44:39
Next
get all users
Built with