Giter VIP home page Giter VIP logo

jobboard's Introduction

Jobboard

Job curation web server

Usage

The web server is accessible via host:

TBD

API Endpoints

GET api/jobs

Create a new job posting

Query Parameters

field type description
page string
approval_status string pending, approved, spam

Responses

code description
200 success
{
  "jobs": [
    {
      "id": 1,
      "title": "Job name here",
      "company": "Backend Engineer",
      ...
    },
    ...
  ]
}
code description
400 check error message
{
  "message": "error message here"
}

GET api/jobs/:jobId

Create a new job posting

Path Parameters

field type description
jobId string

Responses

code description
200 success
{
  {
    "id": 1,
    "title": "Job name here",
    "company": "Backend Engineer",
    ...
  }
}
code description
400 check error message
{
  "message": "error message here"
}

POST api/jobs

Create a new job posting

Body Parameters

Parameter content type: application/json

field type description
title json job title
company string name of the company

Example Body

{
  "title": "Job name here",
  "company": "Backend Engineer"
}

Responses

code description
200 success
{
  "jobId": "job_123123"
}
code description
400 job not created, check error message
{
  "message": "error message here"
}

GET api/mods/approve/:jobId

Approve a job posting

Query Parameters

field type description
authKey string base-64 encoded jwt with 48-hour expiry

Responses

code description
200 success
400 request failed
{
  "message": "error message here"
}

GET api/mods/mark-as-spam/:jobId

Mark as spam job posting

Query Parameters

field type description
authKey string base-64 encoded jwt with 48-hour expiry

Responses

code description
200 success
400 request failed
{
  "message": "error message here"
}

jobboard's People

Contributors

metalvexis avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.