get/offer/{offerId}/openquestion

Returns the prescreening questions with open answers of an offer where the id matches with the {offerId} in the URL.


Request

Resource URL

https://api.infojobs.net/api/1/offer/{offerId}/openquestion

Security

  • User Role: public
  • Scope: none

Parameters

Name Description

offerId

String

Required

Offer identifier.

Example values: 1ea3d2bedb4940bc83aad93726cb16

Maximum length: 100

Response

Response fields

Returns a list of questions with open answers. See below for details.

Fields related to OfferOpenQuestion entity
Name Description

id

Long

The question unique identifier.

question

String

The question.

Maximum length: 500

answer

String

The answer filled by the user. Always empty in this operation.

Maximum length: 1500

Error codes

Code Description

313

The offer {offerId} is not a valid parameter

Examples

This example gets the prescreening questions with open answers of an offer where the id matches with the {offerId}.

Request

GET https://api.infojobs.net/api/1/offer/{offerId}/question

Response

[
  {
    "id": 2391697190,
    "question": "¿Vives en Barcelona?"
  }
]