Test2 Project
  1. APPLICATION
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.
    • Manually Add Skills Via Api Endpoint Based On Role
  • ORG
    • Get Organization Details By Oid
    • Update Organization Details By Oid
    • Organisation Holiday List Post And Update If Present
    • Get Organisation Holiday List
    • Organisation Holiday List Restriction
    • Member Invite Link
    • Verify Member
    • Get All Perms Of An Organization (Private)
    • Get All Role Based Perms Of An Organization
    • Get Organization Metrics Overview
  • CANDIDATES
    • Upload Candidate Resume (Public)
    • Apply For A Job (Public)
  • APPLICATION
    • Build A Flexible Application Form.
      PATCH
    • Preview A Appliation Form For A Job By Jid.
      GET
    • Fetch Application Form Template Available For A Job By Jid.
      GET
    • Delete Application Form Template By Jid And Aftid.
      DELETE
    • Fetch All Application Form Submissions By Jid Or Oid.
      GET
    • Fetch A Application Form Submission Details By Afsid.
      GET
    • Auto Fill Application By Resume
      POST
  • 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. APPLICATION

Fetch Application Form Template Available For A Job By Jid.

GET
/application/save_temp/{jid}/{aftid}
APPLICATION
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/application/save_temp//' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "name": "Personal information",
        "fields": [
            {
                "id": "firstname",
                "required": true,
                "label": "First name",
                "type": "text",
                "maxLength": 0,
                "helper": "string",
                "value": null,
                "prefilledByLocation": true,
                "supportedFileTypes": [
                    "string"
                ],
                "supportedMimeTypes": [
                    "string"
                ],
                "maxFileSize": 0,
                "options": [
                    {
                        "name": "5118908",
                        "value": "Agartala"
                    }
                ],
                "singleOption": true,
                "fields": [
                    {}
                ],
                "editing": true
            }
        ]
    }
]'
Response Response Example
200 - Example 1
null

Request

Path Params
jid
string 
Jid
required
aftid
string 
Aftid
required
Body Params application/json
array of:
name
string 
Name
required
Example:
Personal information
fields
array[object (FieldModel) {15}] 
Fields
required
id
string 
Id
required
Example:
firstname
required
boolean 
Required
required
Example:
true
label
string 
Label
required
Example:
First name
type
string 
Type
required
Example:
text
maxLength
Maxlength
optional
helper
Helper
optional
value
Value
optional
prefilledByLocation
Prefilledbylocation
optional
supportedFileTypes
Supportedfiletypes
optional
supportedMimeTypes
Supportedmimetypes
optional
maxFileSize
Maxfilesize
optional
options
Options
optional
singleOption
Singleoption
optional
fields
Fields
optional
editing
Editing
optional
Examples

Responses

🟢200OK
application/json
Successful Response
Body
No schema defined
🟠422Parameter Error
Modified at 2025-05-26 05:13:41
Previous
Preview A Appliation Form For A Job By Jid.
Next
Delete Application Form Template By Jid And Aftid.
Built with