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

    job

    schema do job

    {
        "title": "string",
        "jobtype": "internship",
        "location": "string",
        "description": "string",
        "salary": 0,
        "workmode": "hybrid",
        "idCompany": "string"
    }
    Built with