Recruspace
  1. Endpoints
Recruspace
  • Welcome
  • Get API Key
  • Authentication
  • Rate Limit
  • Pagination
  • Endpoints
    • Get Candidate
      GET
    • Create Candidate
      POST
    • Add Note to Candidate
      POST
    • Add Tag to Candidate
      POST
    • Add Candidate to Job Post or Talent Pool
      POST
    • Search Candidate by Email
      GET
    • List Company Offices
      GET
    • List Company Users
      GET
    • List Job Posts
      GET
    • Get Job Post
      GET
    • Apply to Job Post
      POST
    • List Job Post Questions
      GET
    • List Talent Pools
      GET
    • Update Talent Pool
      PATCH
    • Delete Talent Pool
      DELETE
    • List Talent Pool Candidates
      GET
    • Create Talent Pool
      POST
    • Upload File
      POST
  1. Endpoints

List Job Post Questions

GET
/api/v1/client/job-posts/{job_post_id}/questions/
Last modified:2025-12-30 13:07:46
Retrieves a list of questions associated with a specific job post for the authenticated company.
Arguments
job_post_id (string, as path parameter) : The unique identifier (hash) of the job post to retrieve.
Example: job_post_id="d82f9a7c91b041b7b2b7612e"
Returns:
200 OK : An array of question objects related to the specified job post. Each object contains details such as question text, type, and additional configuration if applicable.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.recruspace.com/api/v1/client/job-posts//questions/' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": 0,
        "question_key": "string",
        "question_text": "string",
        "answer_type": "date",
        "options": "string",
        "is_required": true,
        "question_type": "string"
    }
]
Modified at 2025-12-30 13:07:46
Previous
Apply to Job Post
Next
List Talent Pools
Built with