Test2 Project
  1. JOBS
Test2 Project
  • ACCOUNT
    • Sign In (Public)
      POST
    • Sign Up (Public)
      POST
    • Logout
      POST
    • Check User Logged Status
      GET
    • Get Account
      GET
    • Update Account
      PATCH
    • Reset Password
      POST
    • Forgot Password (Public)
      POST
    • Verify Token (Public)
      POST
    • Deactivate The User
      PATCH
    • Create, Edit, Delete Files Uploaded By The User
      PATCH
  • JOBS
    • Fetch Job Templates Based On Pagination Format.
      GET
    • Save Job As Template
      PATCH
    • Create Or Update A Job Post.
      PATCH
    • Delete A Job (Development Mode Only)
      DELETE
    • Publish A Job Post
      PATCH
    • Update Application Form
      PATCH
    • Generate Job Description
      POST
    • Enhance Job Description
      POST
    • Generate Job Description From Template
      POST
    • Fetch A Specific Job By Id (Public)
      GET
    • Fetch All Jobs By Organization Id With Pagination (Public)
      GET
    • Fetch Job By Organization And Job Id (Public)
      GET
  • SKILLS
    • Suggest Skills Based On Job Role.
      POST
    • Manually Add Skills Via Api Endpoint Based On Role
      POST
  • ORG
    • Get Organization Details By Oid
      GET
    • Update Organization Details By Oid
      PATCH
    • Organisation Holiday List Post And Update If Present
      PATCH
    • Get Organisation Holiday List
      GET
    • Organisation Holiday List Restriction
      POST
    • Member Invite Link
      POST
    • Verify Member
      POST
    • Get All Perms Of An Organization (Private)
      GET
    • Get All Role Based Perms Of An Organization
      GET
    • Get Organization Metrics Overview
      GET
  • CANDIDATES
    • Upload Candidate Resume (Public)
    • Apply For A Job (Public)
  • APPLICATION
    • Build A Flexible Application Form.
    • Preview A Appliation Form For A Job By Jid.
    • Fetch Application Form Template Available For A Job By Jid.
    • Delete Application Form Template By Jid And Aftid.
    • Fetch All Application Form Submissions By Jid Or Oid.
    • Fetch A Application Form Submission Details By Afsid.
    • Auto Fill Application By Resume
  • RECRUITEMENT PIPELINE
    • Get One Recruitment Pipeline Details.
    • Create Or Update A Recruitment Pipeline.
    • Deletes The Recruitement Pipeline
    • Get Recruitment Pipeline Template Details.
    • Create Or Update A Recruitment Pipeline Template.
    • Move One Candidate Submission To Another Step
  • INTERVIEWER
    • Get All Interviewers Of A Job By Oid
    • Add Interviewers To A Job.
    • Remove Interviewers From A Job.
    • Inactive Interviewers From A Job.
  • Notes
    • Create / Update / Delete
    • Get All Notes
  • SCHEDULE
    • Schedule An Interview.
    • Get Schedule An Interview.
    • Get All Schedule An Interviews And Screening.
    • Get Feedback Meta By Token.
    • Submit Feedback Of Candidate.
    • Google Auth Initiate
    • Google Oauth2.
    • Microsoft Auth Initiate
    • Microsoft Oauth2Callback
    • Validating All The Platform Token
  • EMAIL TEMPLATES
    • Create Email Template By Etid
    • Get Email Template By Oid
  • MEMBERS
    • Fetch All Members Of An Organization By Oid
    • Fetch Member Details By Mid.
    • Update Member By Mid.
    • Add Manual Members To Organization.
  • SCREENING
    • Schedule An Interview.
    • Get Screening Details Of An Candidate By Afsid.
  • SESSIONS
    • Get User Session Details.
  • STAGE
    • Complete A Stage
  • ASSESSMENTS
    • Get Assessment Details Of A Candidate By Afsid And Jid
    • Create Assessment For An Applicant
  • SEARCH_SUGGESIONS
    • Get Search Suggesions By Terms.
  • OFFER
    • Get Applicant Offer Details By Ofid
    • Create Offer Letter For An Applicant
    • Get All Applicants Offer Details By Ofid
  • Root
    GET
  1. JOBS

Save Job As Template

PATCH
/job/save_temp/{jtid}
JOBS
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/job/save_temp/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "oid": "XMPL-874240",
    "mid": "XMPL-874240_1",
    "job_title": "Example Job Title",
    "status": "draft",
    "department": "BTech",
    "code": "string",
    "description": "Description of Job",
    "requirements": "Requirements of Job",
    "experience": "string",
    "location": {
        "mode": "on-site",
        "location": "Agartala, Tripura",
        "additional_locations": [
            "string"
        ]
    },
    "completed": 0,
    "employment_type": "full-time",
    "expected_start_date": "string",
    "application_deadline": "string",
    "min": "string",
    "max": "string",
    "vacancy": 5,
    "skills": [
        {
            "id": "product_development",
            "name": "Product Development",
            "preferred": false
        }
    ],
    "education": "1+ year",
    "currency": "INR",
    "benefits": "A very basic example benifit text. It has a minimum value of 100 character and maximum value of 1000 characters."
}'
Response Response Example
200 - Example 1
null

Request

Path Params
jtid
string 
Jtid
required
Body Params application/json
oid
string 
Oid
required
Example:
XMPL-874240
mid
string 
Mid
required
Example:
XMPL-874240_1
job_title
string 
Job Title
required
Example:
Example Job Title
status
optional
Any of
Allowed values:
draftpublishedarchiveddeletedclosedreset
Default:
draft
department
string 
Department
required
Example:
BTech
code
Code
optional
Any of
Example:
YCS_1
description
string 
Description
required
Example:
Description of Job
requirements
string 
Requirements
required
Example:
Requirements of Job
experience
string 
Experience
required
Example:
string
location
object (JobLocation) 
required
mode
string 
Mode
required
Example:
on-site
location
string 
Location
required
Example:
Agartala, Tripura
additional_locations
Additional Locations
optional
completed
Completed
optional
Any of
Examples:
1234
employment_type
string 
Employment Type
required
Example:
full-time
expected_start_date
Expected Start Date
required
Any of
Example:
10/12/2025
application_deadline
Application Deadline
required
Any of
Example:
05/12/2025
min
string 
Min
required
Example:
string
max
string 
Max
required
Example:
string
vacancy
integer 
Vacancy
required
Example:
5
skills
array[object (JobSkill) {3}] 
Skills
required
id
string 
Id
required
Example:
product_development
name
string 
Name
required
Example:
Product Development
preferred
boolean 
Preferred
optional
Default:
false
Example:
false
education
string 
Education
required
Example:
1+ year
currency
string 
Currency
required
Example:
INR
benefits
string 
Benefits
required
>= 100 characters<= 1000 characters
Example:
A very basic example benifit text. It has a minimum value of 100 character and maximum value of 1000 characters.
Examples

Responses

🟢200OK
application/json
Successful Response
Body
No schema defined
🟠422Parameter Error
Modified at 2025-05-26 05:13:41
Previous
Fetch Job Templates Based On Pagination Format.
Next
Create Or Update A Job Post.
Built with