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

get user

Developing
Develop Env
http://localhost:5000/api
Develop Env
http://localhost:5000/api
GET
/user/6f8c1936-5681-4599-bb9a-47085e5a19ef

Request

None

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 'http://localhost:5000/api/user/6f8c1936-5681-4599-bb9a-47085e5a19ef'

Responses

🟢200OK
application/json
Bodyapplication/json

Examples
{
    "success": true,
    "message": "user",
    "data": {
        "id": "6f8c1936-5681-4599-bb9a-47085e5a19ef",
        "name": "Emmett Tremblay",
        "email": "Leland.Thiel@gmail.com",
        "age": 25,
        "country": "Cayman Islands",
        "phone": "220-631-8154 x4814",
        "gender": "male"
    }
}
Modified at 2024-11-11 17:11:40
Previous
get all users
Next
register company
Built with