1. application
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. application

apply

Developing
Develop Env
http://localhost:5000/api
Develop Env
http://localhost:5000/api
POST
/application/apply

Request

Body Params application/json

Example
{
    "idUser": "f4fc019f-bd6b-4a38-89c2-d1129b3df20f",
    "idJob": "afc7f4fa-ac2c-4d2a-a038-aed0b616d62c"
}

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/application/apply' \
--header 'Content-Type: application/json' \
--data '{
    "idUser": "f4fc019f-bd6b-4a38-89c2-d1129b3df20f",
    "idJob": "afc7f4fa-ac2c-4d2a-a038-aed0b616d62c"
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{"success":true,"message":"apply job successfully"}
Modified at 2024-11-18 10:46:26
Previous
get job by id
Next
reset password
Built with